home *** CD-ROM | disk | FTP | other *** search
/ IBM OEM Software Product … CD For PC Manufacturers / IBM OEM Software - Product Sampler CD for PC Manufacturers.iso / InternetIntranets / Notes / LOTUS024.DSK / SP000029 (.txt) < prev   
Lotus Notes Database  |  1997-09-19  |  968KB  |  5,185 lines

  1. Doc Library - Notes & Web (R4.6)
  2. #1StdR46WebDocLib
  3. c:\notefile\doclbw46.ntf
  4. O=Lotus Notes
  5. O=Lotus Notes
  6. PURSAFO
  7. |.:#U
  8. O=Lotus Notes
  9. CN=Lotus Notes Template Development/O=Lotus Notes
  10. PURSAFO
  11. Fde!f^^
  12. EhJVT
  13. lU    n{Y
  14. OK5sqni;
  15. $TITLE
  16. $Info
  17. $Body
  18. CN=Lotus Notes Template Development/O=Lotus Notes
  19. FOLDER_DIRECTORY_OBJECT
  20. My Favorite Documents
  21. n+^"=-b
  22. 0rA.l
  23. i*`Lg
  24. IWhPlbQ
  25. W*KvU
  26. CN=Catherine Duffy/OU=NAHQ/O=LotusCN=Catherine Duffy/O=IrisLotus NotesCN=Catherine Duffy/O=IrisLotus NotesCN=Catherine Duffy/O=IrisLotus NotesCN=Lotus Notes Template Development/O=Lotus NotesCN=Cathy Duffy/O=BeachCN=Lotus Notes Template Development/O=Lotus NotesCN=Catherine Duffy/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes
  27. ######################################
  28. i*`Lg
  29. $Modified
  30.     1S2S3S
  31. $TITLE$FormPrivs$FormUsers$Body$Flags$Class$Modified$Comment$AssistTrigger$AssistType$AssistFlags$UpdatedBy$$FormScript_O
  32. $Flags
  33.     0SL1S4S5S3724
  34. $TITLE
  35. CN=Catherine Duffy/O=Iris##################################
  36. Process Late Reviews
  37. Selects those documents which are in review and have due dates which have passed.  Based upon the review style of the document, it then either moves it along to the next reviewer, marks it as complete, or simply notifies the current reviewer(s) that their review is overdue.1SfL3
  38. CN=Catherine Duffy/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#####################
  39. CN=Catherine Duffy/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes###############
  40. CN=Catherine Duffy/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes########################################################
  41. Main Navigator B1 - All DocumentsMain Navigator B1 - All DocumentsJP
  42. CN=Catherine Duffy/O=Iris
  43. ooool
  44. ooooo
  45. oooool
  46. oooooo`
  47. oooooo
  48. qSYw{Y
  49. ###################################
  50. CN=Catherine Duffy/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes########################################################
  51. (SubmitDocument)
  52. Web onlyEH4fL3u
  53. CN=Catherine Duffy/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#################################
  54. (OpenDocument)
  55. Web onlyEH4fL3u
  56. CN=Catherine Duffy/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes###################################
  57. ##########################################################
  58. O=Lotus Notes
  59. O=Lotus Notes
  60. PURSAFO
  61. |.:#U
  62. O=Lotus Notes
  63. CN=Lotus Notes Template Development/O=Lotus Notes
  64. PURSAFO
  65. Fde!f^^
  66. $ACLDigest
  67. '++LotusScript Development Environment:2:5:(Options):0:66
  68. Option Public
  69. '++LotusScript Development Environment:2:5:(Forward):0:1
  70. Declare Sub Initialize
  71. Declare Sub SendReminder(EmailType)
  72. Declare Function GetString(StringType)
  73. '++LotusScript Development Environment:2:5:(Declarations):0:10
  74. Dim session As NotesSession
  75. Dim db As NotesDatabase
  76. Dim view As NotesView
  77. Dim documents As NotesDocumentCollection
  78. Dim note As NotesDocument
  79. Dim parent As NotesDocument
  80. Dim emaildoc As NotesDocument
  81. Dim dt As NotesDateTime
  82. Dim item As NotesItem
  83. Dim rtitem As NotesRichTextItem
  84. Dim nam As NotesName
  85. Dim ReviewerList As Variant
  86. Dim ReviewerNumber As Integer
  87. Dim ReviewWindow As String
  88. Dim NextReviewer As String
  89. '++LotusScript Development Environment:2:2:Initialize:1:10
  90. Sub Initialize
  91.      
  92. %REM     
  93. changes:
  94. ReviewerNumber is 1 based so when Reviewer 1 is reviewing ReviewerNumber = 1.
  95. Therefore, using a 0 based array, NextReviewer = ReviewerList(ReviewerNumber)
  96. send the message
  97. increment next reviewer if necessary
  98. %END REM
  99.      
  100. 'While this is similar to the same agent in doclib4, it is slightly different.  The differences are commented
  101.      
  102.      Set session = New NotesSession    
  103.      Set db = session.CurrentDatabase
  104.      Set documents = db.Search("@Today => @Date(DueDateTime) & Status = 2", Nothing, 0)
  105.      If documents.Count = 0 Then Exit Sub
  106.      
  107.      For d = 1 To documents.Count
  108.           Set note = documents.GetNthDocument(d)
  109.           ReviewWindow = note.ReviewWindow(0)      
  110.           ReviewerList = note.ReviewerList
  111.           ReviewerNumber = note.ReviewerNumber(0)
  112.           Set dt = New NotesDateTime(note.DueDateTime(0))
  113.           Set nam = New NotesName(note.From(0))
  114. 'ReviewWindow in the Web version has values of 0 (no time limit), 1 (move to next reviewer), and 2 (send notification)         
  115.           Select Case ReviewWindow
  116.           Case "1"   'Move to next reviewer
  117.                SendReminder("WindowExpired")
  118.                If ReviewerNumber <= Ubound(ReviewerList) Then 
  119.                     SendReminder("NotifyNextReviewer")
  120.                Else
  121.                     SendReminder("NotifyOriginator")
  122.                     note.Status = 3
  123.                End If
  124.                note.ReviewerNumber = ReviewerNumber + 1
  125.           Case "2"   'Send notification to current reviewer
  126.                SendReminder("Reminder")
  127.           End Select
  128.           If note.IsResponse Then note.RemoveItem("DueDateTime")
  129.           note.Save True, True, True
  130.      Next
  131.      
  132. End Sub
  133. '++LotusScript Development Environment:2:2:SendReminder:1:8
  134. Sub SendReminder(EmailType)
  135.      
  136.      If note.IsResponse Then Exit Sub
  137.      
  138.      Set maildoc = New NotesDocument(db)
  139.      Set rtitem = New NotesRichTextItem(maildoc, "Body")
  140.      maildoc.InheritedSubject = note.Subject
  141.      maildoc.InheritedDbTitle = db.Title
  142.      
  143.      Select Case EmailType
  144.      Case "Reminder"
  145.           maildoc.SendTo = ReviewerList(ReviewerNumber - 1)
  146.           maildoc.Subject = GetString(1)
  147.           rtitem.AppendText(GetString(2))
  148.           Call rtitem.AppendDocLink(note, GetString(3))
  149.      Case "WindowExpired"
  150.           maildoc.SendTo = ReviewerList(ReviewerNumber - 1)
  151.           maildoc.Subject = GetString(4)
  152.           rtitem.AppendText(GetString(5))
  153.           Call rtitem.AppendDocLink(note, GetString(3))
  154. 'reset the due date          
  155.           Set dt = New NotesDateTime("")
  156.           dt.SetNow
  157.           ReviewTime = note.ReviewTime(0)
  158.           If Isnumeric(ReviewTime) Then
  159.                dt.AdjustDay(ReviewTime)
  160.                Set note.DueDateTime = dt
  161.           End If
  162.      Case "NotifyNextReviewer"
  163.           maildoc.SendTo = ReviewerList(ReviewerNumber)
  164.           maildoc.Subject = GetString(6)
  165.           rtitem.AppendText(GetString(7))
  166.           Call rtitem.AppendDocLink(note, GetString(8))
  167.      Case "NotifyOriginator"
  168.           maildoc.SendTo = note.From
  169.           maildoc.Subject = GetString(9)
  170.           rtitem.AppendText(GetString(10))
  171.           Call rtitem.AppendDocLink(note, GetString(8))
  172.      End Select
  173.      
  174.      maildoc.Form = "Memo"
  175.      On Error Resume Next
  176.      Call maildoc.Send (False)
  177.      
  178. End Sub
  179. '++LotusScript Development Environment:2:1:GetString:1:8
  180. Function GetString(StringType)
  181.      
  182.      Select Case StringType
  183.      Case 1     'Subject of a reminder email
  184.           GetString = "Overdue Document Review"
  185.      Case 2     'Body of a reminder email
  186.           GetString = "Your review of the document entitled " & note.Subject(0) &  " was due on " & dt.DateOnly &_
  187.           ".  Please review the document and mark it as complete, because you will continue to receive these notifications until you do so.  "
  188.      Case 3     'comment for the AppendDocLink method
  189.           GetString = "DocLink to Overdue Document"
  190.      Case 4     'Subject of WindowExpired email
  191.           GetString = "Document Review Period has Expired"
  192.      Case 5     'Body of a expired email
  193.           GetString = "The time limit for your review of the document entitled " & note.Subject(0) &  " expired on " & dt.DateOnly & ".  "
  194.      Case 6     'Subject for email notifying next reviewer that they need to review this
  195.           GetString = "Document Requires Review"
  196.      Case 7     'Body of email to ntes reviewer
  197.           GetString = nam.Common & " would like you to review the document entitled " & note.Subject(0) & " before " & dt.DateOnly & ".  "
  198.      Case 8     'comment for the AppendDocLink method
  199.           GetString = "DocLink to Document requiring review"
  200.      Case 9     'Subject on email to originator
  201.           GetString = "Document Review is Complete"
  202.      Case 10   'Body of expired email to originator
  203.           GetString = "The time limit for the review of the document entitled " & note.Subject(0) &  " expired on " & dt.DateOnly & ".  "
  204.      End Select
  205.      
  206. End Function
  207. \    \    \    
  208. O=Lotus Notes
  209. O=Lotus Notes
  210. PURSAFO
  211. |.:#U
  212. O=Lotus Notes
  213. CN=Lotus Notes Template Development/O=Lotus Notes
  214. PURSAFO
  215. Fde!f^^
  216. $TITLE
  217. $AssistType
  218. $AssistLastRun
  219. $AssistDocCount
  220. $Comment
  221. $AssistFlags
  222. $AssistTrigger
  223. $AssistInfo
  224. $AssistQuery
  225. $AssistAction
  226. $AssistAction_Ex
  227. O=Lotus Notes
  228. O=Lotus Notes
  229. PURSAFO
  230. |.:#U
  231. O=Lotus Notes
  232. CN=Lotus Notes Template Development/O=Lotus Notes
  233. PURSAFO
  234. Fde!f^^
  235. sZ%!ZM}
  236. $Flags
  237. Times New Roman
  238. bullet
  239. /All?OpenView
  240.     (Return to All Documents View)
  241. T    !hA
  242. !ATA!T!TJ3U
  243. &XKBU
  244. C'UBK#JThT
  245.  J#9#9
  246. [$U%U>L
  247. MLUB&B%
  248. B4B4%
  249. 4BKB^U4B&K
  250. f#fKf
  251. NVM$B&K
  252.     TJZ9J=J9E
  253. NCML>^4UL
  254. U%BKelg
  255. AbA!T!T
  256. K&KJ 
  257. hKeK3K&J
  258. cf%K#J J
  259. N*MLUB
  260. K9J#Kh
  261. = JT!TJ9J]JKf
  262. $U4>_g
  263. L>B3XU>
  264. gN(L4B3K
  265. J9J&L
  266. 4B3B4
  267. fUB&l
  268. M5L>:5
  269. fC5:C
  270. $U4ULT
  271. B&3BL
  272. C:>U:B
  273. l+`:U&393Z3ZJT!
  274. =J=]=
  275. 'UB3&B$
  276. (_%^>L 
  277. M:U4^>:
  278. = J ]
  279. =TATA
  280. LU%U'
  281. V[$U>_5
  282.     gN6:>_5ND
  283. m"P8;*:U3KZ
  284. CLUlU
  285. VMLU^_5c
  286. U    >:UM
  287. 6M:>U
  288. ?`':L5J
  289. D8-DON*Y':[
  290. C'L>Lf
  291. +C5[:5L
  292.     h7VML$56C
  293. Ck$Ui%
  294. k$>$Mf
  295. O65L:56
  296. DNC:U%_:M
  297. MLU>:%
  298. T!T!T!T
  299.  J T=
  300. q8;VM(
  301. eD,D8P
  302. C)C[:C
  303. 8pO+N
  304. D)CM:5
  305. ?M$UL(l
  306. =JKUb
  307. ,?C5:5L
  308. oW,ONV
  309. JT TJ9#3>
  310. iP8OV
  311. NC'M6
  312. oD+NV
  313. mVCM'
  314. W;V6Y*
  315. MLU$M    
  316. ONoML
  317. = J9J
  318. i/@WP
  319. pN65M5
  320. N*(LU
  321. NC'LU&KJ#K
  322. T!T!=
  323. Th!AT
  324. T = =
  325. K34:f
  326. W,Opo
  327. @D;V(o
  328. N)VCM$U%U
  329. )V6YC
  330. WO?6CV
  331. iCD?C
  332. = = J J J9JZ3Z
  333. ML:M6
  334. CM'Mh
  335. PDNV5'>BK
  336. ZE9JTAT 
  337. ATh!A
  338. Th!TJ9K9J9
  339. Z3X^MB
  340. OD+a65V
  341. DmVCMU
  342. 3J9Z9J
  343. M'M5M
  344. ONojL
  345. POVML
  346. oDN)V(L_>U$C'
  347. W.D;VC:_4#Z
  348. A!AT!A
  349. J    93FX3141F
  350. Dm)VML
  351. V)CML^B3X
  352. 4F4F42
  353. jkL:5U
  354.     cDNCk'M6
  355. W,Oa6ML:
  356. PWON65:U39J9
  357. Z3ZK9Z
  358. jM5C)c
  359.     `ML>:(U
  360. ONC'L
  361.     ,Na65LU
  362. b+`5:>
  363. F43J93F4F4
  364. -DO?6:_>
  365. ;6ML%3fJ
  366. hT J]
  367. J9J=J#BLC
  368. VCM'[5V*
  369. lOVC'iU
  370. lON?V5>UL
  371. O?5G>
  372. A    T]9 T=TJ]
  373. JT!TA
  374. J =9Z9J9
  375. lNO)V5:_:YVO
  376. ML[:56N8
  377. M)a65G:5C)i
  378. MLUBUL
  379. ;)V65UBUMoe
  380. V;V5:>^3X
  381. F4RF9
  382. 9J#B    
  383. @DNVYMLMB
  384. ON*YM$B3
  385. NVCM:^&BK#KUM
  386. =T=T=
  387. NV6MU%>[6VN7D-
  388. [5?78
  389. D;?6[:S>:CN,D
  390. V(k$UL'C
  391. VCMLU
  392. 4B>5VOD
  393. UB%L5V;+;N
  394. V;O7O;?C6Y:4&B$C+
  395. #J=JTJ
  396. =gJBLM
  397. r8D+VC5M:5C?NO\N?65:^B9J
  398. $lU$MC*
  399. !T!T!
  400. h!h!TAT
  401. o*C65_%B4>:MC?N
  402. ;N?VCMLUB4U
  403. )V5M$24B4UM6VN;N;+NV
  404. >:Y*?N
  405. 4>:Y6V
  406. VCM[:>
  407. BL5o?
  408. CLU43K9J TJ93#Z=
  409. T!hT!hT fB$LkM'L>
  410. M'LU%eB>[(
  411. N;O;VC
  412. 5M:4K
  413. bIbIbA
  414. A!Ah!
  415. kM[LU
  416. 3^2U:5C6V`C
  417. X&XB>:
  418. MLiU%
  419. U$L[M
  420. :LU>U2^4^_:[
  421. V?V6([
  422. BULMk:
  423. J]J T
  424. JK^U>
  425. K3B4U>
  426. MC6`*6C
  427. 5M:LS
  428. U>UL:5
  429. >4B9J
  430. JeU$L
  431. >U3K#K
  432. K    9 J
  433. %BeK#KJK&BU>
  434. %U4U2
  435. K3X&B^
  436. T!T!T
  437. !TJ34U%U>SU4XB
  438. >:M5M:
  439. 4BX&3
  440. =J=J]=
  441. 3#g=J9
  442. #KJK3K
  443. 4    U>4B&3&3B
  444. X3BFB4U
  445. J9K9K3K3&
  446. #fKfK
  447. J] hA
  448. XB4U4B&3K
  449. ]JK3BXB
  450. K    3B43BX3KX
  451. X43KJ
  452. T TJ=
  453. JZ39J
  454.  T!T9
  455. 3439K
  456. BF3K9J 
  457. =J#K9J9Z3
  458. J9Z3K9K
  459. #K39Z
  460. =JT T
  461. !hThT
  462. h!ThT
  463. K9]J]
  464.  9]!hTJ9Z9J
  465. hA!h!h
  466. TJ JT
  467.     AbAb
  468. !TAh!T
  469. bAbAbAb
  470. T=]JT
  471. s{{kss{
  472. k{{cssZkk
  473. ks{cks
  474. ss{{{
  475. Using Document Library
  476.     This database allows you to capture and track information about documents.
  477. Functions of the Database:
  478.     To add a document to this database
  479.     Click the New Document action from any of the views.
  480.     To respond to a document
  481.     Open a document, then click the Response action.  From a Notes Client, you can also highlight that document in a view, then click Response from there.  For Notes Client users, this creates a response to the main document in the thread.  For browser clients, this creates a response to the current document.
  482.     To respond to a response
  483.     From a Notes Client, highlight the response you wish to respond to, then click Response to Response.  This function is performed from a browser by using the Response action, as described above.
  484.     To flag a document as Private:
  485.     You can use the "Mark Private" and
  486.     "Mark Public" actions in the template to control whether anyone other than yourself can read a specific document.  For example, if you have not completed the writing of a particular document, you can click the "Mark Private" action and others will not be able to see the document.  When you complete the document, you can click the
  487.     "Mark Public"
  488.     action to make it available for others to read.  If a document is marked private after it has been submitted for review, the document author and the reviewers will be able to read the document.
  489. ACL Settings
  490.     This application was designed with the intention that all users, except the manager, should have Author access.  If they have editor access, the review cycle may not function correctly.  Anonymous access is also not permitted.
  491. Features
  492.     Document Review Cycle:
  493.     The author of a document has the option of setting up a document review cycle for that document. To do so simply click on the Setup Review Cycle link and fill in the necessary information.  
  494.     Note:  
  495.     Do not use 
  496.     @Domain
  497.      when entering approver names.  Any domain added will be stripped off and may cause complications when attempting to route a request.  Also, only enter Person-names as approvers.  Group names are not supported.
  498.     Processing Late Reviews:
  499.     If the Process Late Reviews agent is enabled, it selects those documents which are in review and have due dates which have passed.  Based on the time limit options chosen by the originator, it then either moves it along to the next reviewer, marks it as complete, or simply notifies the current reviewer that the review is overdue.
  500.     Document Archiving:
  501.     This is a process by which certain documents are removed from the current database and stored in a different database.  This keeps the document library up-to-date with only the latest topics.  Most of the Archiving activities take place from the "Archiving" view.  You must switch to this view in order to initiate archiving on a document library database.
  502. To set up archiving on any document library database, switch to the Archiving view and click the action called "Setup Archive".  The Archive Profile appears.  This document contains criteria that the user specifies for archiving topics in a document library (e.g., inactive after 'x' days, or expired after 'x' days).  The archive database is automatically created when the Profile is saved.  The archival database filename is also specified in the Archive Profile; the title of the archive will be the title of the Document Library database followed by "(Archived)".  After the archive criteria have been specified in the Archive Profile, other agents run on the database to move the document(s).  
  503.     Mark/Unmark Document as Expired:
  504.       Marks a topic as "expired".  
  505. If the Archive Profile specifies that 
  506.     expired 
  507.     topics should be archived, the document(s) marked with this agent would fall into that criterion.  If a document is already marked as expired, this agent tells the user what the expire date was, and will ask if the user wants to un-expire it.
  508.     Periodic Archive:
  509. Reviews the Archive Profile and moves documents which meet the archive criteria into the archive database.  This agent is run automatically on the server; the schedule is set by the database manager/designer.
  510. O=Lotus Notes
  511. O=Lotus Notes
  512. PURSAFO
  513. |.:#U
  514. O=Lotus Notes
  515. CN=Lotus Notes Template Development/O=Lotus Notes
  516. PURSAFO
  517. Fde!f^^
  518. 9E9    ?
  519. $Info
  520. $Body
  521. Document
  522. Document
  523.     0S0E
  524. EGCAw)
  525. }{A@>)
  526. My Favorite DocumentsMy Favorite Documents/L
  527. Scope
  528. Private
  529. ExpireDate
  530. _ViewIcon
  531.     2S3S4S6S8S9S12S14S
  532. DocumentG
  533. Status
  534. StatusY
  535. Subject
  536. $VersionOpt
  537. Subject
  538.   (Original document in review cycle)
  539. ReviewStyle
  540. ParallelG
  541. Subject
  542.   (Reviewed by 
  543. LastEditor"
  544. Subject
  545.   (Reviewed by 
  546. PreviousReviewers
  547. Archive
  548. Subject
  549. Subject
  550. (Response to 
  551. OriginalSubject
  552. Subject
  553.  (Response to "
  554. OriginalSubject
  555.     6S9RS4E12S13S14S15S20RS8E22RS4E27RS8E28S29S31RS4E35S38RS9E39S40S41S42S2E43S44S46RS4E47S48S49S50S56S57S60R64S67RS4E69R70S71S73RS5E74S75S76S79R80S81S82S83S84S85S
  556. $29$30$27From$Conflict
  557. From$27
  558. CN=Catherine Duffy/O=IrisCN=Lotus Notes Template Development/O=Lotus NotesCN=Catherine Duffy/O=IrisFYpdw
  559. ##################################################
  560. CN=Catherine Duffy/O=IrisCN=Cathy Duffy/O=BeachCN=Catherine Duffy/O=IrisCN=Tidepool/O=BeachCN=Catherine Duffy/O=IrisCN=Lotus Notes Template Development/O=Lotus NotesCN=Catherine Duffy/O=IrisCN=Tidepool/O=BeachCN=Catherine Duffy/O=IrisCN=Cathy Duffy/O=BeachCN=Catherine Duffy/O=IrisCN=Lotus Notes Template Development/O=Lotus NotesSubmitForReviews34Q1########
  561. By Author |ByAuthorp
  562. $14#i
  563. useSubject
  564. ImmediateParentSubjecth
  565. ImmediateParentSubject
  566. OriginalSubject
  567. OriginalSubject
  568.     1S2S9S11RS35E16S18RS31E
  569. readers
  570. PRIVATE: 
  571. ExpireDate
  572. EXPIRED: 
  573. Subject
  574. Untitled
  575. Subject
  576. useSubject
  577.  (RE: 
  578. useSubject
  579.     0RR4S8RS8E9S14RS6E17RR20S21S23S25S27S28RR31S32S34RS8E37S38S40RS4E
  580. $33$14$35$Conflict
  581. $33$14
  582.  $33 ,
  583. $14Date
  584. $14#i
  585. $35Topic
  586. useSubject
  587. ImmediateParentSubjecth
  588. ImmediateParentSubject
  589. OriginalSubject
  590. OriginalSubject
  591.     1S2S9S11RS35E16S18RS31E
  592. readers
  593. PRIVATE: 
  594. ExpireDate
  595. EXPIRED: 
  596. Subject
  597. Untitled
  598. Subject
  599. useSubject
  600.  (RE: 
  601. useSubject
  602.     0RR4S8RS8E9S14RS6E17RR20S21S23S25S27S28RR31S32S34RS8E37S38S40RS4E&
  603. CN=Catherine Duffy/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes######################################
  604. $$ViewTemplate for ByAuthorCD
  605. CN=Catherine Duffy/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes###########
  606. Scope
  607. Private
  608. ExpireDate
  609. _ViewIcon
  610.     2S3S4S6S8S9S12S14S
  611. $30Title
  612. DocumentG
  613. Status
  614. StatusY
  615. Subject
  616. $VersionOpt
  617. Subject
  618.   (Original document in review cycle)
  619. ReviewStyle
  620. ParallelG
  621. Subject
  622.   (Reviewed by 
  623. LastEditor"
  624. Subject
  625.   (Reviewed by 
  626. PreviousReviewers
  627. Archive
  628. Subject
  629. Subject
  630. (Response to 
  631. OriginalSubject
  632. Subject
  633.  (Response to "
  634. OriginalSubject
  635.     6S9RS4E12S13S14S15S20RS8E22RS4E27RS8E28S29S31RS4E35S38RS9E39S40S41S42S2E43S44S46RS4E47S48S49S50S56S57S60R64S67RS4E69R70S71S73RS5E74S75S76S79R80S81S82S83S84S85S$27Date
  636. FromAuthor&
  637. Categori_ze
  638. _Edit Document
  639. Send Docu_ment
  640. _Forward
  641. Navigator
  642. EnvName
  643. NavigatorState"
  644.     1S2S
  645. EnvName
  646. EnvName
  647. EnvName
  648.     0R11RS8E13RS20E14S20RS20E30RS8E32RS20E33S39RS20E44RS9E
  649. New Document,
  650. Document
  651.     0S0E
  652. Response,
  653. Response
  654.     0S0E
  655. Response to Response8
  656. Response to Response
  657.     0S0E
  658. _Move to Folder...    
  659. _Remove from Folder...
  660. O=Lotus Notes
  661. O=Lotus Notes
  662. PURSAFO
  663. |.:#U
  664. O=Lotus Notes
  665. CN=Lotus Notes Template Development/O=Lotus Notes
  666. PURSAFO
  667. Fde!f^^
  668. $TITLE
  669. $Name
  670. $Index
  671. $Formula
  672. $FormulaClass
  673. $VIEWFORMAT
  674. $Comment
  675. $ACTIONS
  676. Times New Roman
  677.     0S0E
  678.     Click here to access the database
  679. /All?OpenView
  680.     (Click here to open the database)
  681. T    !hA
  682. !ATA!T!TJ3U
  683. &XKBU
  684. C'UBK#JThT
  685.  J#9#9
  686. [$U%U>L
  687. MLUB&B%
  688. B4B4%
  689. 4BKB^U4B&K
  690. f#fKf
  691. NVM$B&K
  692.     TJZ9J=J9E
  693. NCML>^4UL
  694. U%BKelg
  695. AbA!T!T
  696. K&KJ 
  697. hKeK3K&J
  698. cf%K#J J
  699. N*MLUB
  700. K9J#Kh
  701. = JT!TJ9J]JKf
  702. $U4>_g
  703. L>B3XU>
  704. gN(L4B3K
  705. J9J&L
  706. 4B3B4
  707. fUB&l
  708. M5L>:5
  709. fC5:C
  710. $U4ULT
  711. B&3BL
  712. C:>U:B
  713. l+`:U&393Z3ZJT!
  714. =J=]=
  715. 'UB3&B$
  716. (_%^>L 
  717. M:U4^>:
  718. = J ]
  719. =TATA
  720. LU%U'
  721. V[$U>_5
  722.     gN6:>_5ND
  723. m"P8;*:U3KZ
  724. CLUlU
  725. VMLU^_5c
  726. U    >:UM
  727. 6M:>U
  728. ?`':L5J
  729. D8-DON*Y':[
  730. C'L>Lf
  731. +C5[:5L
  732.     h7VML$56C
  733. Ck$Ui%
  734. k$>$Mf
  735. O65L:56
  736. DNC:U%_:M
  737. MLU>:%
  738. T!T!T!T
  739.  J T=
  740. q8;VM(
  741. eD,D8P
  742. C)C[:C
  743. 8pO+N
  744. D)CM:5
  745. ?M$UL(l
  746. =JKUb
  747. ,?C5:5L
  748. oW,ONV
  749. JT TJ9#3>
  750. iP8OV
  751. NC'M6
  752. oD+NV
  753. mVCM'
  754. W;V6Y*
  755. MLU$M    
  756. ONoML
  757. = J9J
  758. i/@WP
  759. pN65M5
  760. N*(LU
  761. NC'LU&KJ#K
  762. T!T!=
  763. Th!AT
  764. T = =
  765. K34:f
  766. W,Opo
  767. @D;V(o
  768. N)VCM$U%U
  769. )V6YC
  770. WO?6CV
  771. iCD?C
  772. = = J J J9JZ3Z
  773. ML:M6
  774. CM'Mh
  775. PDNV5'>BK
  776. ZE9JTAT 
  777. ATh!A
  778. Th!TJ9K9J9
  779. Z3X^MB
  780. OD+a65V
  781. DmVCMU
  782. 3J9Z9J
  783. M'M5M
  784. ONojL
  785. POVML
  786. oDN)V(L_>U$C'
  787. W.D;VC:_4#Z
  788. A!AT!A
  789. J    93FX3141F
  790. Dm)VML
  791. V)CML^B3X
  792. 4F4F42
  793. jkL:5U
  794.     cDNCk'M6
  795. W,Oa6ML:
  796. PWON65:U39J9
  797. Z3ZK9Z
  798. jM5C)c
  799.     `ML>:(U
  800. ONC'L
  801.     ,Na65LU
  802. b+`5:>
  803. F43J93F4F4
  804. -DO?6:_>
  805. ;6ML%3fJ
  806. hT J]
  807. J9J=J#BLC
  808. VCM'[5V*
  809. lOVC'iU
  810. lON?V5>UL
  811. O?5G>
  812. A    T]9 T=TJ]
  813. JT!TA
  814. J =9Z9J9
  815. lNO)V5:_:YVO
  816. ML[:56N8
  817. M)a65G:5C)i
  818. MLUBUL
  819. ;)V65UBUMoe
  820. V;V5:>^3X
  821. F4RF9
  822. 9J#B    
  823. @DNVYMLMB
  824. ON*YM$B3
  825. NVCM:^&BK#KUM
  826. =T=T=
  827. NV6MU%>[6VN7D-
  828. [5?78
  829. D;?6[:S>:CN,D
  830. V(k$UL'C
  831. VCMLU
  832. 4B>5VOD
  833. UB%L5V;+;N
  834. V;O7O;?C6Y:4&B$C+
  835. #J=JTJ
  836. =gJBLM
  837. r8D+VC5M:5C?NO\N?65:^B9J
  838. $lU$MC*
  839. !T!T!
  840. h!h!TAT
  841. o*C65_%B4>:MC?N
  842. ;N?VCMLUB4U
  843. )V5M$24B4UM6VN;N;+NV
  844. >:Y*?N
  845. 4>:Y6V
  846. VCM[:>
  847. BL5o?
  848. CLU43K9J TJ93#Z=
  849. T!hT!hT fB$LkM'L>
  850. M'LU%eB>[(
  851. N;O;VC
  852. 5M:4K
  853. bIbIbA
  854. A!Ah!
  855. kM[LU
  856. 3^2U:5C6V`C
  857. X&XB>:
  858. MLiU%
  859. U$L[M
  860. :LU>U2^4^_:[
  861. V?V6([
  862. BULMk:
  863. J]J T
  864. JK^U>
  865. K3B4U>
  866. MC6`*6C
  867. 5M:LS
  868. U>UL:5
  869. >4B9J
  870. JeU$L
  871. >U3K#K
  872. K    9 J
  873. %BeK#KJK&BU>
  874. %U4U2
  875. K3X&B^
  876. T!T!T
  877. !TJ34U%U>SU4XB
  878. >:M5M:
  879. 4BX&3
  880. =J=J]=
  881. 3#g=J9
  882. #KJK3K
  883. 4    U>4B&3&3B
  884. X3BFB4U
  885. J9K9K3K3&
  886. #fKfK
  887. J] hA
  888. XB4U4B&3K
  889. ]JK3BXB
  890. K    3B43BX3KX
  891. X43KJ
  892. T TJ=
  893. JZ39J
  894.  T!T9
  895. 3439K
  896. BF3K9J 
  897. =J#K9J9Z3
  898. J9Z3K9K
  899. #K39Z
  900. =JT T
  901. !hThT
  902. h!ThT
  903. K9]J]
  904.  9]!hTJ9Z9J
  905. hA!h!h
  906. TJ JT
  907.     AbAb
  908. !TAh!T
  909. bAbAbAb
  910. T=]JT
  911. s{{kss{
  912. k{{cssZkk
  913. ks{cks
  914. ss{{{
  915. About Document Library
  916.     What does this database do?
  917.     A Document Library application is an electronic filing cabinet that stores reference documents for access by a workgroup.  The database might contain anything from environmental impact statements for a group of engineers to financial statements for a group of loan officers.
  918.     Who will use this database?
  919.     Anyone who wishes to create a record of a document or review available documents may use this database.
  920.     Important Features
  921.     Web or Notes client:
  922.      Database can be accessed from either a Web browser or a Notes Client.
  923.     Review Cycle:
  924.      Used to route a document to a series of recipients.
  925.     Document Archiving:
  926.      Used to move expired documents to an archive database.
  927.     Suggestions for Modifications
  928.     Full text search: 
  929.     If you wish to use Notes' full text search capabilities for a database created with this template, select menu File, Database, Properties, go to the Full Text panel and then select Create Index... to create the full text index.
  930.     Where to find more information?
  931.     More information can be found in the 
  932. Notes
  933. /$Help?OpenHelp
  934.     3S4S6S11S21S
  935.     Using This Database
  936.      document, or refer to the following documentation database on http://www.notes.net:  Best Practices: Templates and Sample Databases (BPTEMP.NSF)
  937.     Access Control
  938.     Very Important:  
  939.     Access level should be 
  940.     Author
  941.      for all users of this database.  This will prevent unauthorized editing of documents within the database.  The Author fields within the forms govern who will be able to edit/review particular documents.   Errors will occur if someone with Editor access attempts to review a document when they are not an authorized reviewer of that document.  For those accessing the database from a Web browser, the database does not accept Anonymous users.
  942. O=Lotus Notes
  943. O=Lotus Notes
  944. PURSAFO
  945. |.:#U
  946. O=Lotus Notes
  947. CN=Lotus Notes Template Development/O=Lotus Notes
  948. PURSAFO
  949. Fde!f^^
  950. $Info
  951. $Body
  952. '++LotusScript Development Environment:2:5:(Options):0:74
  953. Option Public
  954. Option Explicit
  955. Use "SubmitForReview"
  956. '++LotusScript Development Environment:2:5:(Forward):0:1
  957. Declare Sub Initialize
  958. '++LotusScript Development Environment:2:5:(Declarations):0:2
  959. '++LotusScript Development Environment:2:2:Initialize:1:10
  960. Sub Initialize
  961.      
  962. 'logging is for debug purposes
  963.      Set dbug = New NotesLog("SubmitDocument")
  964. 'to turn off the debug log, set this to False     
  965.      dbug.LogActions = True
  966.      dbug.OpenAgentLog
  967.      
  968.      On Error Goto StandardError
  969.      
  970.      Set session = New NotesSession
  971.      Set db = session.CurrentDatabase
  972.      DbName = getdbpath
  973.      Set note = session.DocumentContext
  974.      If note.Form(0) <> "Document" Then Goto ExitWithoutSend
  975.      If note.HasItem("SaveOnly") Then
  976.           note.RemoveItem("SaveOnly")
  977.           Exit Sub
  978.      End If
  979.      
  980.      If note.SubmitNow(0) = "1" Then SubmitNow = True
  981.      
  982. 'If we are not submitting for review, we don't need to do the rest of this     
  983.      If (Not(SubmitNow) Or note.Status(0) = 3) And note.Resubmit(0) = "0" Then Goto ExitWithoutSend
  984.      
  985. 'Validate the Originator is not in the ReviewerList
  986.      If ListIncludesOriginator Then
  987.           ErrorText = GetString(17)                    
  988.           Goto ValidationError
  989.      End If
  990.      
  991. 'Validate that ReviewTime has a valid entry if ReviewWindow is not 0
  992.      Set item = note.GetFirstItem("ReviewTime")
  993.      If note.ReviewWindow(0) <> "0" Then
  994.           Dim InvalidReviewTime As Integer
  995. 'This verifies that it is not 0 or blank or a string
  996.           If item.Text = "" Or item.Text = "0" Or item.Text Like "*ERROR*" Then
  997.                InvalidReviewTime = True
  998. 'This verifies that it is a whole number > 0          
  999.           Elseif note.ReviewTime(0) < 1 Or Int(note.ReviewTime(0)) <> note.ReviewTime(0) Then
  1000.                InvalidReviewTime = True
  1001.           End If
  1002.           If InvalidReviewTime Then     
  1003.                FieldName = "Time Limit"
  1004.                ErrorText = GetString(16)
  1005.                Goto ValidationError
  1006.           End If
  1007.      End If     
  1008.      
  1009. 'Validate that ReviewerList is not empty     
  1010.      If note.ReviewerList(0) = "" Then
  1011.           FieldName = "Reviewer List"
  1012.           ErrorText = GetString(19)          
  1013.           Goto ValidationError     
  1014.      End If
  1015.      
  1016.      SendToNext 'in scriptlib SubmitForReview
  1017.      
  1018.      Exit Sub     
  1019.      
  1020. ExitWithoutSend: 'You submitted the form but were not sending anything to anyone
  1021.      Print "<h3>" & GetString(9) & "</h3>"
  1022.      Goto ViewLinks
  1023.      
  1024. StandardError: 'This is for errors which we are not specifically handling
  1025.      Print "<h2>" & GetString(12) & "</h2>"
  1026.      Goto ViewLinks
  1027.      
  1028. ValidationError:
  1029.      Print "<h2>" & ErrorText & "</h2><hr>"
  1030.      Print "<h3><a href=/" & DbName & "/($All)/" & note.UniversalId & "?EditDocument>" & GetString(14) & "</a>" & GetString(15) & "<hr>"
  1031.      
  1032.      Exit Sub
  1033.      
  1034. ViewLinks:
  1035.      Print "<hr><center>" & _
  1036.      "<b><a href=/" + DbName + "/All?OpenView>" & GetString(30) & "</a></b> | " & _
  1037.      "<b><a href=/" + DbName + "/ByCategory?OpenView>" & GetString(33) & "</a></b> | " & _     
  1038.      "<b><a href=/" + DbName + "/ByAuthor?OpenView>" & GetString(31) & "</a></b> | " & _
  1039.      "<b><a href=/" + DbName + "/ReviewStatus?OpenView>" & GetString(32) & "</a></b>" & _
  1040.      "</center><hr>"
  1041.      
  1042. End Sub
  1043. l    l    H
  1044. O=Lotus Notes
  1045. O=Lotus Notes
  1046. PURSAFO
  1047. |.:#U
  1048. O=Lotus Notes
  1049. CN=Lotus Notes Template Development/O=Lotus Notes
  1050. PURSAFO
  1051. Fde!f^^
  1052. $TITLE
  1053. $AssistType
  1054. $AssistLastRun
  1055. $AssistDocCount
  1056. $Comment
  1057. $AssistFlags
  1058. $AssistTrigger
  1059. $AssistInfo
  1060. $AssistQuery
  1061. $AssistAction
  1062. $AssistAction_Ex
  1063. '++LotusScript Development Environment:2:5:(Options):0:74
  1064. Option Public
  1065. Option Explicit
  1066. Option Compare Nocase
  1067. '++LotusScript Development Environment:2:5:(Forward):0:1
  1068. Declare Function GetString(StringType)
  1069. Declare Function SendToNext
  1070. Declare Function ListIncludesOriginator
  1071. Declare Function GetDBPath
  1072. '++LotusScript Development Environment:2:5:(Declarations):0:10
  1073. Dim session As NotesSession
  1074. Dim db As NotesDatabase
  1075. Dim note As NotesDocument
  1076. Dim mailnote As NotesDocument
  1077. Dim savenote As NotesDocument
  1078. Dim rtitem As NotesRichTextItem
  1079. Dim item As NotesItem
  1080. Dim dbug As NotesLog
  1081. Dim username As NotesName
  1082. Dim fromname As NotesName
  1083. Dim sendtoName As NotesName
  1084. Dim reviewername As NotesName
  1085. Dim dt As NotesDateTime
  1086. Dim ReviewerNumber, TotalReviewers, Position, SubmitNow, IsCurrentReviewer As Integer
  1087. Dim ReviewerList, ReviewTime As Variant
  1088. Dim NextReviewer, DbName, ViewList, NotificationType, ClientType, FieldName, ErrorText As String
  1089. '++LotusScript Development Environment:2:1:GetString:1:8
  1090. Function GetString(StringType)
  1091.      
  1092.      Select Case StringType
  1093.      Case 1     'Subject of the original copy of the document
  1094.           GetString = "Original Copy: " & note.Subject(0)
  1095.      Case 2     'Subject of the final reviewer email stating that all reviewers have completed their review
  1096.           GetString = "Review is complete for the document entitled:  " & note.Subject(0)
  1097.      Case 3     'Subject of email informing a reviewer that they need to review this doc
  1098.           GetString = fromname.Common & " would like you to review the document entitled: " & note.Subject(0)
  1099.      Case 4     'First line of acknowledgement page, informing user that email was successfully sent to originator
  1100.           GetString = sendtoname.Common & " has been notified that review of this document is complete"
  1101.      Case 5     'First line of acknowledgement page, informing user that email was successfully sent to next reviewer
  1102.           GetString = sendtoname.Common & " has been notified that this document requires review"
  1103.      Case 6     'Line in Reviewer Log stating when the doc was submitted for review by the originator
  1104.           GetString = "Submitted for review on " & Today
  1105.      Case 7     'Line in Reviewer Log stating that a particular reviewer has been skipped
  1106.           'GetString = ReviewerList(ReviewerNumber - 1) & " was skipped over by " & username.Common & " on " & Today
  1107.           GetString = reviewername.Common & " was skipped over by " & username.Common & " on " & Today
  1108.      Case 8     'Line in Reviewer Log stating when a particular reviewer completed their review
  1109.           GetString = "Review completed by " & username.Common & " on " & Today
  1110.      Case 9     'User submitted form but did not indicate that they needed to send anything
  1111.           GetString = "Document has been saved"
  1112.      Case 10   'Text for the Body field of the notification email
  1113.           GetString = "Click on this link to access the document.  "
  1114.      Case 11   'Text associated with the AppendDocLink method
  1115.           GetString = db.Title & ", " & note.Subject(0)
  1116.      Case 12   'An error that we are not specifically handling
  1117.           GetString = Err & " - " & Error
  1118.      Case 13   'First line on the acknowledgment page when there was an error sending the document
  1119.           GetString = "Error sending review notification to " & sendtoName.Common
  1120.      Case 14   '1st string in the second line on the acknowledgement page when there was an error sending the document
  1121.           '(the string says "Return to Document, fix the whatever, and resubmit" and Return to Document is a link back to the doc"
  1122.           GetString = "Please click here to return to the document"
  1123.      Case 15   '2nd string in the second line on the acknowledgement page when there was a validation or send error
  1124.           GetString = ", fix the " & FieldName & ", and resubmit."
  1125.      Case 16   '1st line of Error if user entered a ReviewWindow but no ReviewTime
  1126.           GetString = "You indicated what should happen when the time limit expires but you did not indicate a valid Time Limit (a whole number greater than 0).  "
  1127.      Case 17   '1st line of Error if originator included themself in the reviewer list
  1128.           GetString = "The document's originator cannot be included in the reviewer list.  "
  1129.      Case 18   'messagebox text for validation errors
  1130.           GetString = "Please enter a valid " & FieldName & "."
  1131.      Case 19   'User indicated submit for review but didn't enter any reviewers
  1132.           GetString = "You did not indicate who should review this document."
  1133.      Case 30   '30-33 are the names of views you can go to from the submitted page     
  1134.           GetString = "All Documents"
  1135.      Case 31   '30-33 are the names of views you can go to from the submitted page     
  1136.           GetString = "By Author"
  1137.      Case 32   '30-33 are the names of views you can go to from the submitted page     
  1138.           GetString = "Review Status"
  1139.      Case 33   '30-33 are the names of views you can go to from the submitted page     
  1140.           GetString = "By Category"
  1141.      Case 40   'Title bar for messageboxes (Notes client only)
  1142.           GetString = "Document Library"
  1143.      Case 41   'Title bar for error messageboxes (Notes client only)
  1144.           GetString = "Document Library - Error"
  1145.      End Select
  1146.      
  1147. End Function
  1148. '++LotusScript Development Environment:2:1:SendToNext:1:8
  1149. Function SendToNext
  1150.      
  1151.      If Not(dbug Is Nothing) Then dbug.LogAction("SendToNext")
  1152.      
  1153.      SendToNext = True
  1154.      
  1155.      On Error Goto StandardError
  1156.      
  1157.      Set mailnote = New NotesDocument(db)
  1158.      
  1159.      ReviewerList = note.ReviewerList
  1160.      TotalReviewers = Ubound(ReviewerList)
  1161.      
  1162.      Set username = New NotesName(note.CurrentUser(0))
  1163.      Set reviewername = New NotesName(note.CurrentEditor(0))
  1164.      Set fromname = New NotesName(note.From(0))
  1165.      
  1166.      If Lcase(username.Common) = Lcase(reviewername.Common) Then IsCurrentReviewer = True
  1167.      
  1168. 'Statuses:  1=New, 2=In Review, 3=Review Complete     
  1169.      If note.Status(0) = 1 Then
  1170. 'savenote is a copy of the original which we save as a response to the copy that will be reviewed          
  1171.           If Not(note.HasItem("OriginalSaved")) Then
  1172.                note.save True, True, True
  1173.                Set savenote = New NotesDocument(db)
  1174.                Call note.CopyAllItems(savenote, False)
  1175. 'from the Notes client, the body field is not available to note until a ui save
  1176.                If note.HasItem("Body") Then
  1177.                     Set rtitem = note.GetFirstItem("Body")
  1178.                     savenote.RemoveItem("Body")
  1179.                     Call rtitem.CopyItemToDocument(savenote, "Body")
  1180.                Else
  1181.                     note.CopyBody = True
  1182.                End If
  1183.                Call savenote.MakeResponse(note)
  1184.                savenote.~$RefOptions = "1"
  1185.                savenote.Subject = GetString(1)
  1186.                savenote.save True, True, True
  1187.                note.OriginalSaved = savenote.UniversalId
  1188.           End If
  1189. 'if we are skipping the first reviewer on the initial send, we need to increment the reviewernumber          
  1190.           If note.Resubmit(0) = "2" Then
  1191.                ReviewerNumber = 1
  1192.                note.ReviewerNumber = 1
  1193.           Else
  1194.                ReviewerNumber = 0
  1195.                note.ReviewerNumber = 0
  1196.           End If
  1197.      Else
  1198.           ReviewerNumber = note.ReviewerNumber(0)
  1199.      End If
  1200.      
  1201. 'in this case we are resubmitting after a successful send so we decrement the ReviewerNumber
  1202.      If note.Resubmit(0) = "1" And Not(note.HasItem("SendError")) Then
  1203.           ReviewerNumber = ReviewerNumber - 1
  1204. 'in this case we are skipping this person and sending notification to the next person                    
  1205.      Elseif note.Resubmit(0) = "2" And IsCurrentReviewer Then
  1206.           ReviewerNumber = ReviewerNumber + 1
  1207.      End If
  1208.      
  1209. 'in this case I am the last person in the reviewer list     
  1210.      If ReviewerNumber > TotalReviewers Then 
  1211.           mailnote.SendTo = note.From
  1212.           mailnote.Subject = GetString(2)
  1213.           NotificationType = "complete"
  1214.           Gosub SendMail
  1215.           note.Status = 3
  1216.           note.RemoveItem("DocAuthors")
  1217.      Else
  1218.           NotificationType = "review"
  1219. 'if this is a resubmit, you might have entered something new in the NewReviewer field, so we need to put that in ReviewerList          
  1220.           If note.Resubmit(0) = "1" Then
  1221.                ReviewerList(ReviewerNumber) = note.NewReviewer(0)
  1222.                note.ReviewerList = ReviewerList
  1223.           End If
  1224.           mailnote.SendTo = ReviewerList(ReviewerNumber)
  1225.           mailnote.Subject = GetString(3)
  1226.           Gosub SendMail
  1227.           If note.NotifyAfter(0) = "1" And ReviewerNumber > 0 And fromname.Common <> username.Common Then
  1228.                NotificationType = "originator"
  1229.                mailnote.SendTo = note.From
  1230.                mailnote.Subject = GetString(8)
  1231.                Gosub SendMail
  1232. 'these two things need to be reset               
  1233.                NotificationType = "review"
  1234.                mailnote.SendTo = ReviewerList(ReviewerNumber)
  1235.           End If
  1236. 'if the send was successful, reset the NexReviewer variable
  1237.           NextReviewer = mailnote.SendTo(0)
  1238.           Position = Instr(NextReviewer, "@")
  1239.           If Position > 0 Then NextReviewer = Left(NextReviewer, Position)
  1240.      End If
  1241.      
  1242. 'We make sure that the mailsend is successful before we alter any field values on the current document     
  1243.      
  1244. 'put the next reviewer in the author name field so they can edit the doc, but strip off the @ if there is one     
  1245.      If note.Status(0) = 1 Then
  1246.           note.Status = 2
  1247.           note.ReviewerLog = GetString(6)
  1248.      Else
  1249.           Set item = note.GetFirstItem("ReviewerLog")
  1250. 'First, note that the review is complete if appropriate
  1251.           If (SubmitNow Or (note.Resubmit(0) <> "0" And note.HasItem("SendError"))) And IsCurrentReviewer Then
  1252.                item.AppendToTextList(GetString(8))
  1253.           End If
  1254.      End If
  1255. 'Then, if someone was skipped log that as well
  1256.      If note.Resubmit(0) = "2" Then
  1257.           If item Is Nothing Then Set item = note.GetFirstItem("ReviewerLog")
  1258.           'If IsCurrentReviewer Then
  1259.           Set reviewername = New NotesName(ReviewerList(ReviewerNumber-1))
  1260.           'Else
  1261.           '     Set reviewername = New NotesName(ReviewerList(ReviewerNumber))
  1262.           'End If
  1263.           item.AppendToTextList(GetString(7))     
  1264.      End If
  1265.      
  1266.      NextReviewer = mailnote.SendTo(0)
  1267.      Position = Instr(NextReviewer, "@")
  1268.      If Position > 0 Then NextReviewer = Left(NextReviewer, Position)
  1269.      note.CurrentEditor = NextReviewer
  1270.      note.NewReviewer = NextReviewer
  1271. 'ReviewerNumber is 0 based here but 1 based on the document because it is used by Notes formulas
  1272.      note.ReviewerNumber = ReviewerNumber + 1
  1273.      note.RemoveItem("SubmitNow")
  1274.      note.RemoveItem("Resubmit")
  1275.      note.RemoveItem("SendError")
  1276.      note.RemoveItem("CurrentUser")
  1277.      
  1278. ExitWithSuccessfulSend: 'You submitted the form for review and the notification mail was sent successfully
  1279.      
  1280.      If ClientType = "Notes" Then
  1281.           If NotificationType = "complete" Then     
  1282.                Messagebox GetString(4), 0, GetString(40)
  1283.           Else
  1284.                Messagebox GetString(5), 0, GetString(40)
  1285.           End If
  1286.      Else
  1287.           If NotificationType = "complete" Then     
  1288.                Print  "<h3>" & GetString(4) & "</h3>"
  1289.           Else
  1290.                Print  "<h3>" & GetString(5) & "</h3>"
  1291.           End If
  1292.           Print "<hr><center>" & _
  1293.           "<b><a href=/" + DbName + "/All?OpenView>" & GetString(30) & "</a></b> | " & _
  1294.           "<b><a href=/" + DbName + "/ByCategory?OpenView>" & GetString(33) & "</a></b> | " & _     
  1295.           "<b><a href=/" + DbName + "/ByAuthor?OpenView>" & GetString(31) & "</a></b> | " & _
  1296.           "<b><a href=/" + DbName + "/ReviewStatus?OpenView>" & GetString(32) & "</a></b>" & _
  1297.           "</center><hr>"
  1298.           note.RemoveItem("SendError")
  1299.      End If     
  1300.      
  1301.      Exit Function
  1302.      
  1303. SendMail:
  1304.      
  1305. 'set the due date          
  1306.      If note.ReviewWindow(0) <> "0" Then
  1307.           Set dt = New NotesDateTime("")
  1308.           dt.SetNow
  1309.           ReviewTime = note.ReviewTime(0)
  1310.           If Isnumeric(ReviewTime) Then
  1311.                dt.AdjustDay(ReviewTime)
  1312.                Set note.DueDateTime = dt
  1313.           End If
  1314.      End If
  1315.      
  1316.      mailnote.Form = "Memo"
  1317.      
  1318.      Set rtitem = New NotesRichTextItem(mailnote, "Body")
  1319.      rtitem.AppendText(GetString(10))
  1320.      Call rtitem.AppendDocLink(note, GetString(11))
  1321.      
  1322.      If NotificationType = "originator" Then
  1323. 'we don't care if there is a problem telling the originator that someone completed their review
  1324. 'they can always get that info from the reviewer log on the doc and we don't have a way to correct the send error          
  1325.           On Error Resume Next
  1326.      Else
  1327.           Set sendtoName = New NotesName(mailnote.SendTo(0))
  1328.           On Error Goto MailError
  1329.      End If
  1330.      mailnote.Send(False)
  1331.      Err = 0
  1332.      
  1333.      On Error Goto StandardError
  1334.      Return
  1335.      
  1336. StandardError: 'This is for errors which we are not specifically handling
  1337.      If ClientType = "Notes" Then
  1338.           Messagebox GetString(12), 0 + 16, GetString(41)
  1339.           SendToNext = False
  1340.      Else
  1341.           Print "<h2>" & GetString(12) & "</h2>"
  1342.           Print "<hr><center>" & _
  1343.           "<b><a href=/" + DbName + "/All?OpenView>" & GetString(30) & "</a></b> | " & _
  1344.           "<b><a href=/" + DbName + "/ByCategory?OpenView>" & GetString(33) & "</a></b> | " & _     
  1345.           "<b><a href=/" + DbName + "/ByAuthor?OpenView>" & GetString(31) & "</a></b> | " & _
  1346.           "<b><a href=/" + DbName + "/ReviewStatus?OpenView>" & GetString(32) & "</a></b>" & _
  1347.           "</center><hr>"
  1348.      End If
  1349.      Exit Function
  1350.      
  1351. MailError: 'This is for mail send errors
  1352. 'if the doc has a SendError field, we display a different part of the form so they can correct the name     
  1353.      note.SendError=1
  1354. 'reset the default for NewReviewer to the person we tried to send to
  1355.      note.NewReviewer = ReviewerList(ReviewerNumber)     
  1356. 'set Resubmit back to the default so the user can choose to resubmit or skip     
  1357.      note.Resubmit = "0"
  1358.      
  1359.      If ClientType = "Notes" Then
  1360.           Messagebox GetString(13), 0 + 16, GetString(41)
  1361.           SendToNext = False
  1362.      Else
  1363.           FieldName = "name"
  1364.           Print "<h2>" & GetString(13) & "</h2><hr>"
  1365.           Print "<h3><a href=/" & DbName & "/($All)/" & note.UniversalId & "?EditDocument>" & GetString(14) & "</a>" & GetString(15) & "<hr>"
  1366.      End If
  1367.      Exit Function
  1368.      
  1369. End Function
  1370. '++LotusScript Development Environment:2:1:ListIncludesOriginator:1:8
  1371. Function ListIncludesOriginator
  1372.      
  1373. 'the reviewer list cannot include the originator.  The assumption is that since you wrote it you don't need to review it.
  1374.      
  1375.      ListIncludesOriginator = False
  1376.      Dim comparename As NotesName
  1377.      Dim SameName As Integer
  1378.      
  1379.      ReviewerList = note.ReviewerList
  1380.      Set fromname = New NotesName(note.From(0))
  1381.      Forall r In ReviewerList
  1382.           Set comparename = New NotesName(r)
  1383.           If comparename.IsHierarchical And fromname.IsHierarchical And comparename.Abbreviated = fromname.Abbreviated Then
  1384.                ListIncludesOriginator = True
  1385.                FieldName = "Reviewer List"
  1386.                Exit Function
  1387.           Elseif comparename.Common = fromname.Common Then
  1388.                ListIncludesOriginator = True
  1389.                FieldName = "Reviewer List"
  1390.                Exit Function
  1391.           End If
  1392.      End Forall
  1393.      
  1394.      Set comparename = New NotesName(note.NewReviewer(0))
  1395.      If comparename.IsHierarchical And fromname.IsHierarchical And comparename.Abbreviated = fromname.Abbreviated Then
  1396.           ListIncludesOriginator = True
  1397.           FieldName = "Reviewer"
  1398.      Elseif comparename.Common = fromname.Common Then
  1399.           ListIncludesOriginator = True
  1400.           FieldName = "Reviewer"
  1401.      End If
  1402.      
  1403. End Function
  1404. '++LotusScript Development Environment:2:1:GetDBPath:1:8
  1405. Function GetDBPath
  1406. 'check to see if the database is in a directory and swap the slash directions
  1407.      Dim tmpPath As String     
  1408.      tmpPath = db.filepath
  1409.      Do While Instr(tmpPath,"\") > 0
  1410.           tmpPath = Left$(tmpPath, Instr(tmpPath,"\")-1) + "/" + Right$(tmpPath,Len(tmpPath)-Instr(tmpPath,"\"))
  1411.      Loop
  1412.      
  1413. 'check and see if there are any embedded spaces and replace them with +     
  1414.      Do While Instr(tmpPath," ") > 0
  1415.           tmpPath = Left$(tmpPath, Instr(tmpPath," ")-1) + "+" + Right$(tmpPath,Len(tmpPath)-Instr(tmpPath," "))
  1416.      Loop
  1417.      
  1418.      GetDbPath = tmpPath
  1419.      
  1420. End Function
  1421. O=Lotus Notes
  1422. O=Lotus Notes
  1423. PURSAFO
  1424. |.:#U
  1425. O=Lotus Notes
  1426. CN=Lotus Notes Template Development/O=Lotus Notes
  1427. PURSAFO
  1428. Fde!f^^
  1429. !$4;R
  1430. $ScriptLib
  1431. $ScriptLib_O
  1432. $TITLE
  1433. $Flags
  1434. $PublicAccess
  1435. '++LotusScript Development Environment:2:5:(Options):0:74
  1436. Option Public
  1437. Option Explicit
  1438. Use "SubmitForReview"
  1439. '++LotusScript Development Environment:2:5:(Forward):0:1
  1440. Declare Sub Initialize
  1441. '++LotusScript Development Environment:2:5:(Declarations):0:2
  1442. '++LotusScript Development Environment:2:2:Initialize:1:10
  1443. Sub Initialize
  1444.      
  1445. 'logging is for debug purposes
  1446.      Set dbug = New NotesLog("SubmitDocument")
  1447. 'to turn off the debug log, set this to False     
  1448.      dbug.LogActions = True
  1449.      dbug.OpenAgentLog
  1450.      
  1451.      On Error Goto StandardError
  1452.      
  1453.      Set session = New NotesSession
  1454.      Set db = session.CurrentDatabase
  1455.      Set note = session.DocumentContext
  1456.      
  1457. 'remove all of these so they can ger resest with default values each time the doc is opened     
  1458.      note.RemoveItem("SaveOptions")
  1459.      note.RemoveItem("CurrentUser")
  1460.      note.RemoveItem("SubmitNow")
  1461.      note.RemoveItem("Resubmit")
  1462.      note.WebCategories = note.Categories
  1463.      note.Save True, True, True
  1464.      Exit Sub
  1465.      
  1466. StandardError: 'This is for errors which we are not specifically handling
  1467.      Print "<h2>" & GetString(12) & "</h2>" & GetString(30)
  1468.      Exit Sub
  1469.      
  1470.      
  1471. End Sub
  1472. O=Lotus Notes
  1473. O=Lotus Notes
  1474. PURSAFO
  1475. |.:#U
  1476. O=Lotus Notes
  1477. CN=Lotus Notes Template Development/O=Lotus Notes
  1478. PURSAFO
  1479. Fde!f^^
  1480. $TITLE
  1481. $AssistType
  1482. $AssistLastRun
  1483. $AssistDocCount
  1484. $Comment
  1485. $AssistFlags
  1486. $AssistTrigger
  1487. $AssistInfo
  1488. $AssistQuery
  1489. $AssistAction
  1490. $AssistAction_Ex
  1491. Categori_ze
  1492. _Edit Document
  1493. Send Docu_ment
  1494. _Forward
  1495. Navigator
  1496. EnvName
  1497. NavigatorState"
  1498.     1S2S
  1499. EnvName
  1500. EnvName
  1501. EnvName
  1502.     0R11RS8E13RS20E14S20RS20E30RS8E32RS20E33S39RS20E44RS9E
  1503. New Document,
  1504. Document
  1505.     0S0E
  1506. Response,
  1507. Response
  1508.     0S0E
  1509. Response To Response6
  1510. ResponseToResponse
  1511.     0S0E
  1512. _Move to Folder...
  1513. _Remove from Folder...
  1514. Mark/Unmark Document As Expired
  1515. (Mark/Unmark Document As Expired)
  1516. O=Lotus Notes
  1517. O=Lotus Notes
  1518. PURSAFO
  1519. |.:#U
  1520. O=Lotus Notes
  1521. CN=Lotus Notes Template Development/O=Lotus Notes
  1522. PURSAFO
  1523. Fde!f^^
  1524. '\,;ic
  1525. j79p<
  1526. $TITLE
  1527. $Index
  1528. $Formula
  1529. $FormulaClass
  1530. $VIEWFORMAT
  1531. $Comment
  1532. $ACTIONS
  1533. By Category |ByCategoryv
  1534. $111l
  1535.     9S11S
  1536. $116i
  1537. AuthorName
  1538. Fromh
  1539. Anonymous
  1540.     1S2S16S
  1541. readers
  1542. PRIVATE: 
  1543. ExpireDate
  1544. EXPIRED: 
  1545. Subject
  1546. Subject
  1547. AuthorName
  1548. D2S0V
  1549.     0R4S8RS8E9S14RS6E17R20S21S23S24S25S27S29S30S31S32S33S34S35S43S
  1550. readers
  1551. PRIVATE: 
  1552. ExpireDate
  1553. EXPIRED: 
  1554. Subject
  1555. Untitled
  1556. Subject
  1557. Fromh
  1558. D0S0V
  1559.     4S8RS8E9S14RS6E17R20S21S23S25S27S28S29S30S34S36S37S2E48S56S
  1560. Categories$111$116$112$118$Conflict$REF
  1561. Categories$116YT
  1562. CN=Catherine Duffy/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes##############################
  1563. Review Status|ReviewStatus1/
  1564. Status$43DueDateTime
  1565. $48$47
  1566. DueDateTime$47Y
  1567. CN=Catherine Duffy/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#########
  1568. ($All)|Allf
  1569. $106l
  1570.     0S0E
  1571. $116l
  1572.     9S11S
  1573. $121i
  1574. AuthorName
  1575. Fromh
  1576. Anonymous
  1577.     1S2S16S
  1578. readers
  1579. PRIVATE: 
  1580. ExpireDate
  1581. EXPIRED: 
  1582. Subject
  1583. Subject
  1584. AuthorName
  1585. D2S0V
  1586.     0R4S8RS8E9S14RS6E17R20S21S23S24S25S27S29S30S31S32S33S34S35S43S
  1587. readers
  1588. PRIVATE: 
  1589. ExpireDate
  1590. EXPIRED: 
  1591. Subject
  1592. Untitled
  1593. Subject
  1594.     4S8RS8E9S14RS6E16S17R20S21S23S25S27S28S29S30S36S37S
  1595. $106$116$121$117$122$Conflict$REF
  1596. $106$121
  1597. $106Y
  1598. CN=Catherine Duffy/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#########################################
  1599. Nav2 - By Author|Nav2
  1600. 552Helvetica652HelveticaG3
  1601. CN=Catherine Duffy/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#########################
  1602. Nav3 - By Category|Nav3
  1603. 552Helvetica652HelveticaG3
  1604. CN=Catherine Duffy/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#######################
  1605. Nav4 - By Review Status|Nav4
  1606. 552Helvetica652HelveticaG3
  1607. CN=Catherine Duffy/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes##################
  1608. ##########################################################
  1609. ##########################################################
  1610. ##########################################################
  1611.  Categories$111D
  1612. $111l
  1613.     9S11S$116
  1614. $116i
  1615. AuthorName
  1616. Fromh
  1617. Anonymous
  1618.     1S2S16S
  1619. readers
  1620. PRIVATE: 
  1621. ExpireDate
  1622. EXPIRED: 
  1623. Subject
  1624. Subject
  1625. AuthorName
  1626. D2S0V
  1627.     0R4S8RS8E9S14RS6E17R20S21S23S24S25S27S29S30S31S32S33S34S35S43S
  1628. $118TopicF
  1629. readers
  1630. PRIVATE: 
  1631. ExpireDate
  1632. EXPIRED: 
  1633. Subject
  1634. Untitled
  1635. Subject
  1636. Fromh
  1637. D0S0V
  1638.     4S8RS8E9S14RS6E17R20S21S23S25S27S28S29S30S34S36S37S2E48S56S&
  1639. Categori_ze2
  1640. _Edit Document
  1641. Send Docu_ment
  1642. _Forward
  1643. Navigator?>
  1644. EnvName
  1645. NavigatorState"
  1646.     1S2S
  1647. EnvName
  1648. EnvName
  1649. EnvName
  1650.     0R11RS8E13RS20E14S20RS20E30RS8E32RS20E33S39RS20E44RS9E
  1651. New Document,
  1652. Document
  1653.     0S0E
  1654. Response,
  1655. Response
  1656.     0S0E
  1657. Response To Response6
  1658. ResponseToResponse
  1659.     0S0E
  1660. _Move to Folder...
  1661. _Remove from Folder...
  1662. Mark/Unmark Document As Expired
  1663. (Mark/Unmark Document As Expired)
  1664. O=Lotus Notes
  1665. O=Lotus Notes
  1666. PURSAFO
  1667. |.:#U
  1668. O=Lotus Notes
  1669. CN=Lotus Notes Template Development/O=Lotus Notes
  1670. PURSAFO
  1671. Fde!f^^
  1672. RkKvV
  1673. $TITLE
  1674. $Index
  1675. $Formula
  1676. $FormulaClass
  1677. $VIEWFORMAT
  1678. $Comment
  1679. $ACTIONS
  1680. SendError
  1681. An error occurred when sending review notification
  1682. Status
  1683. Status
  1684. In Review
  1685. Status
  1686. Complete
  1687. No Status
  1688.     7S9S10S11S13S15S16S17S19S21S22S23S25S27S
  1689. Scope
  1690. ExpireDate
  1691. _ViewIcon
  1692.     2S3S4S6S8S9S12S14S
  1693. DocumentG
  1694. $VersionOpt
  1695. Original by 
  1696. ReviewStyle
  1697. Review by 
  1698. LastEditor
  1699. Subject
  1700. Untitled
  1701. Subject
  1702.     6S9RS4E16RS9E22S25RS4E31RS9E32S33S2E37S40RS4E44R47S48S50S52S54S55S56S57S61S63S64S
  1703. Subject
  1704. Untitled
  1705. Subject
  1706.     3S4S6S8S
  1707. Status
  1708. ReviewerNumber
  1709. ReviewerList
  1710. ReviewerNumberk
  1711.     3S4S5S6S7S8S10S14S18S22S
  1712. Status$43$44$49$48$46$47DueDateTime$Conflict$REF
  1713. Statush
  1714. Status
  1715. ReviewerList
  1716.     L1S5S6S8S9S10S11S12S13S
  1717.  Status$43  $
  1718. SendError
  1719. An error occurred when sending review notification
  1720. Status
  1721. Status
  1722. In Review
  1723. Status
  1724. Complete
  1725. No Status
  1726.     7S9S10S11S13S15S16S17S19S21S22S23S25S27S
  1727. Scope
  1728. ExpireDate
  1729. _ViewIcon
  1730.     2S3S4S6S8S9S12S14S
  1731. DocumentG
  1732. $VersionOpt
  1733. Original by 
  1734. ReviewStyle
  1735. Review by 
  1736. LastEditor
  1737. Subject
  1738. Untitled
  1739. Subject
  1740.     6S9RS4E16RS9E22S25RS4E31RS9E32S33S2E37S40RS4E44R47S48S50S52S54S55S56S57S61S63S64S$48TitleX
  1741. Subject
  1742. Untitled
  1743. Subject
  1744.     3S4S6S8S
  1745. $46Created By,
  1746. $47Reviewer
  1747. Status
  1748. ReviewerNumber
  1749. ReviewerList
  1750. ReviewerNumberk
  1751.     3S4S5S6S7S8S10S14S18S22S
  1752. DueDateTimeDue&
  1753. Categori_ze
  1754. _Edit Document
  1755. Send Docu_ment
  1756. _Forward
  1757. Navigator
  1758. EnvName
  1759. NavigatorState"
  1760.     1S2S
  1761. EnvName
  1762. EnvName
  1763. EnvName
  1764.     0R11RS8E13RS20E14S20RS20E30RS8E32RS20E33S39RS20E44RS9E
  1765. New Document,
  1766. Document
  1767.     0S0E
  1768. Response,
  1769. Response
  1770.     0S0E
  1771. Response to Response8
  1772. Response to Response
  1773.     0S0E
  1774. _Move to Folder...    
  1775. _Remove from Folder...
  1776. O=Lotus Notes
  1777. O=Lotus Notes
  1778. PURSAFO
  1779. |.:#U
  1780. O=Lotus Notes
  1781. CN=Lotus Notes Template Development/O=Lotus Notes
  1782. PURSAFO
  1783. Fde!f^^
  1784. $TITLE
  1785. $Index
  1786. $Formula
  1787. $FormulaClass
  1788. $VIEWFORMAT
  1789. $Comment
  1790. $ACTIONS
  1791.  $106Date4
  1792. $106l
  1793.     0S0E
  1794. $116D
  1795. $116l
  1796.     9S11S$121
  1797. $121i
  1798. AuthorName
  1799. Fromh
  1800. Anonymous
  1801.     1S2S16S
  1802. readers
  1803. PRIVATE: 
  1804. ExpireDate
  1805. EXPIRED: 
  1806. Subject
  1807. Subject
  1808. AuthorName
  1809. D2S0V
  1810.     0R4S8RS8E9S14RS6E17R20S21S23S24S25S27S29S30S31S32S33S34S35S43S
  1811. $122Topic
  1812. readers
  1813. PRIVATE: 
  1814. ExpireDate
  1815. EXPIRED: 
  1816. Subject
  1817. Untitled
  1818. Subject
  1819.     4S8RS8E9S14RS6E16S17R20S21S23S25S27S28S29S30S36S37S&
  1820. Categori_ze6
  1821. _Edit Document
  1822. Send Docu_ment
  1823. _Forward
  1824. Navigator
  1825. EnvName
  1826. NavigatorState"
  1827.     1S2S
  1828. EnvName
  1829. EnvName
  1830. EnvName
  1831.     0R11RS8E13RS20E14S20RS20E30RS8E32RS20E33S39RS20E44RS9E
  1832. New Document,
  1833. Document
  1834.     0S0E
  1835. Response,
  1836. Response
  1837.     0S0E
  1838. Response To Response8
  1839. Response to Response
  1840.     0S0E
  1841. _Move to Folder...
  1842. _Remove from Folder...
  1843. Mark/Unmark Document As Expired
  1844. (Mark/Unmark Document As Expired)
  1845. O=Lotus Notes
  1846. O=Lotus Notes
  1847. PURSAFO
  1848. |.:#U
  1849. O=Lotus Notes
  1850. CN=Lotus Notes Template Development/O=Lotus Notes
  1851. PURSAFO
  1852. Fde!f^^
  1853. $TITLE
  1854. $Index
  1855. $Formula
  1856. $FormulaClass
  1857. $VIEWFORMAT
  1858. $Comment
  1859. $ACTIONS
  1860. By Author
  1861. TextBox1 All Documents
  1862. Notes
  1863. Text7 By Author
  1864. By Author
  1865. Text8 By Category
  1866. Notes
  1867. ByCategory
  1868. Text9 By Review Status
  1869. Notes
  1870. ReviewStatus
  1871. Text11 Archiving
  1872. Notes
  1873. Archiving
  1874. Text13 
  1875. Text14 
  1876. GraphicButton3
  1877. kcR1)
  1878. Rck9JRc
  1879. )1!BR
  1880. cs{Z{
  1881. Bc{J{
  1882. !9JBs
  1883. 1Rk9c
  1884. Rcs9JZ1BR
  1885. !))BZ
  1886. )9JRs
  1887. !1BBc
  1888. 1Jc9Z{Bk
  1889. 1R{c{
  1890. 9Rs1Jk1JsBZ
  1891. GraphicButton4
  1892. ?<;>M
  1893. KM;M;<>%h
  1894. )JLJL)
  1895. ;(>.P
  1896. +S5J)
  1897. 5L9LJ
  1898. LJ5L)
  1899. :"7:KSL
  1900. 7:J(J5J5
  1901. 5L5)JLK
  1902. *"L5K5)K)
  1903. mE=*=*:JK)K5L)
  1904. (SJ9JL9
  1905. :    =M#+
  1906. |k{gnj
  1907. qtqtq
  1908. qtqtq
  1909. t(tqt
  1910. t*tqt
  1911. kcR1)
  1912. Rck9JRc
  1913. )1!BR
  1914. cs{Z{
  1915. Bc{J{
  1916. !9JBs
  1917. 1Rk9c
  1918. Rcs9JZ1BR
  1919. !))BZ
  1920. )9JRs
  1921. !1BBc
  1922. 1Jc9Z{Bk
  1923. 1R{c{
  1924. 9Rs1Jk1JsBZ
  1925. ?_?__
  1926. `!b`1
  1927. 7`^///?
  1928. ?b___
  1929. `bOOO
  1930. `<b!R
  1931. enNavigator]
  1932. Nav1 - A
  1933. Duffy/O=Iris
  1934. XticaG3
  1935. O=Lotus Notes
  1936. O=Lotus Notes
  1937. PURSAFO
  1938. |.:#U
  1939. O=Lotus Notes
  1940. CN=Lotus Notes Template Development/O=Lotus Notes
  1941. PURSAFO
  1942. Fde!f^^
  1943. $ViewMapDataset
  1944. $ViewMapLayout
  1945. $NavImagemap
  1946. By Category
  1947. TextBox1 All Documents
  1948. Notes
  1949. Text7 By Author
  1950. Notes
  1951. ByAuthor
  1952. Text8 By Category
  1953. By Category
  1954. Text9 By Review Status
  1955. Notes
  1956. ReviewStatus
  1957. Text11 Archiving
  1958. Notes
  1959. Archiving
  1960. Text13 
  1961. Text14 
  1962. GraphicButton2
  1963. kcR1)
  1964. Rck9JRc
  1965. )1!BR
  1966. cs{Z{
  1967. Bc{J{
  1968. !9JBs
  1969. 1Rk9c
  1970. Rcs9JZ1BR
  1971. !))BZ
  1972. )9JRs
  1973. !1BBc
  1974. 1Jc9Z{Bk
  1975. 1R{c{
  1976. 9Rs1Jk1JsBZ
  1977. GraphicButton3
  1978. M;<>%h
  1979. LJLJ)LJL
  1980. mc"7"
  1981. 9)<LP
  1982. 5J)J5L9L
  1983. :"!: 8LJ
  1984. 59JLJF
  1985. m\"7"
  1986. 5J5Fh
  1987. 7:L(J5J5
  1988. 5K5)5L)
  1989. )K)KI+
  1990. :=*:L
  1991. (9J9JL9
  1992. }kl{gj
  1993. qtqtq
  1994. t    tqt
  1995. t    tqt
  1996. t    tqt
  1997. t    tqt
  1998. kcR1)
  1999. Rck9JRc
  2000. )1!BR
  2001. cs{Z{
  2002. Bc{J{
  2003. !9JBs
  2004. 1Rk9c
  2005. Rcs9JZ1BR
  2006. !))BZ
  2007. )9JRs
  2008. !1BBc
  2009. 1Jc9Z{Bk
  2010. 1R{c{
  2011. 9Rs1Jk1JsBZ
  2012. vrv'v
  2013. ?_?__
  2014. `!b`1
  2015. 7`^///?
  2016. ?b___
  2017. `bOOO
  2018. `<b!R
  2019. enNavigator]
  2020. enNavigator]
  2021. enNavigator]
  2022. O=Lotus Notes
  2023. O=Lotus Notes
  2024. PURSAFO
  2025. |.:#U
  2026. O=Lotus Notes
  2027. CN=Lotus Notes Template Development/O=Lotus Notes
  2028. PURSAFO
  2029. Fde!f^^
  2030. $ViewMapDataset
  2031. $ViewMapLayout
  2032. $NavImagemap
  2033. Review Status
  2034. TextBox1 All Documents
  2035. Notes
  2036. Text7 By Author
  2037. Notes
  2038. ByAuthor
  2039. Text8 By Category
  2040. Notes
  2041. ByCategory
  2042. Text9 By Review Status
  2043. Review Status
  2044. Text11 Archiving
  2045. Notes
  2046. Archiving
  2047. Text13 
  2048. Text14 
  2049. GraphicButton2
  2050. kcR1)
  2051. Rck9JRc
  2052. )1!BR
  2053. cs{Z{
  2054. Bc{J{
  2055. !9JBs
  2056. 1Rk9c
  2057. Rcs9JZ1BR
  2058. !))BZ
  2059. )9JRs
  2060. !1BBc
  2061. 1Jc9Z{Bk
  2062. 1R{c{
  2063. 9Rs1Jk1JsBZ
  2064. GraphicButton3
  2065. /    =-TM>M#@M
  2066. L)M)L
  2067. K;TM;<>%
  2068. :+(LJ)
  2069. :"7+"S
  2070. LJ9LJL5
  2071. 5JLJL9LJ9L
  2072. 7:KSL
  2073. :7!* 8J
  2074. 5J59J9J5
  2075. 7:J(J5J5
  2076. *"L5K5)K)
  2077. bE=:=*:JK)K5
  2078. (9J9JL9
  2079. :    =M#+
  2080. |kl{l
  2081. qtqtq
  2082. t    tqt
  2083. t    tqt
  2084. t    tqt
  2085. t    tqt
  2086. kcR1)
  2087. Rck9JRc
  2088. )1!BR
  2089. cs{Z{
  2090. Bc{J{
  2091. !9JBs
  2092. 1Rk9c
  2093. Rcs9JZ1BR
  2094. !))BZ
  2095. )9JRs
  2096. !1BBc
  2097. 1Jc9Z{Bk
  2098. 1R{c{
  2099. 9Rs1Jk1JsBZ
  2100. _IBMP
  2101. _IPCX
  2102. ?_?__
  2103. `!b`1
  2104. 7`^///?
  2105. ?b___
  2106. `bOOO
  2107. `<b!R
  2108. enNavigator]
  2109. enNavigator]
  2110. enNavigator]
  2111. enNavigator]
  2112. O=Lotus Notes
  2113. O=Lotus Notes
  2114. PURSAFO
  2115. |.:#U
  2116. O=Lotus Notes
  2117. CN=Lotus Notes Template Development/O=Lotus Notes
  2118. PURSAFO
  2119. Fde!f^^
  2120. $ViewMapDataset
  2121. $ViewMapLayout
  2122. $NavImagemap
  2123. Nav5 - Archiving|Nav5
  2124. 552Helvetica652HelveticaG3
  2125. CN=Catherine Duffy/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#########################
  2126. $$ViewTemplate for ByCategoryCD
  2127. CN=Catherine Duffy/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#########
  2128. $$ViewTemplate for ReviewStatusCD
  2129. CN=Catherine Duffy/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#######
  2130. $$ViewTemplate for AllCD
  2131. CN=Catherine Duffy/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes################
  2132. Nav1 - All Documents|Nav1
  2133. 552Helvetica652HelveticaG3
  2134. CN=Catherine Duffy/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#####################
  2135. 255D2116B7BDFECF1769F57E5917AA29Lotus Notes
  2136. Archive ProfileArchiveProfileArchive ProfileStdR46DiscCD
  2137. CN=Catherine Duffy/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes
  2138. ##########################################################
  2139. 255D2116B7BDFECF1769F57E5917AA29Lotus Notes
  2140. (Archive Log)Archive LogArchiveLogStdR46DiscCD
  2141. CN=Teresa Deane/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes########################################################
  2142. (ArchiveInstructions)(ArchiveInstructions)StdR46DiscC
  2143. CN=Catherine Duffy/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes###################
  2144. (ArchiveProfileDlg)StdR46DiscCDw
  2145. CN=Teresa Deane/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes###########################################
  2146. (ProcessExistingDbDlg)StdR46DiscDCw
  2147. CN=Teresa Deane/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes################################################
  2148. (Mark/Unmark Document As Expired)This is for a Notes user only.303
  2149. StdR46Disc]@j
  2150. CN=Teresa Deane/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes###############################################
  2151. ##########################################################
  2152. Archiving
  2153. TextBox1 All Documents
  2154. Notes
  2155. Text7 By Author
  2156. Notes
  2157. ByAuthor
  2158. Text8 By Category.
  2159. Notes
  2160. ByCategory
  2161. Text9 By Review Status
  2162. Notes
  2163. ReviewStatus
  2164. Text11 Archiving
  2165. Archiving
  2166. Text13 
  2167. Text14 
  2168. GraphicButton2
  2169. kcR1)
  2170. Rck9JRc
  2171. )1!BR
  2172. cs{Z{
  2173. Bc{J{
  2174. !9JBs
  2175. 1Rk9c
  2176. Rcs9JZ1BR
  2177. !))BZ
  2178. )9JRs
  2179. !1BBc
  2180. 1Jc9Z{Bk
  2181. 1R{c{
  2182. 9Rs1Jk1JsBZ
  2183. GraphicButton3
  2184. /=-<;>M
  2185. ;TM;<>%
  2186. )JT;>M>@5
  2187. "7:!S5
  2188. L$J)<LP
  2189. :"7+"9J5L
  2190. L,J9L9P
  2191. 5J)J5J9L
  2192. LJLJL
  2193. !:K9L
  2194. :"7: 8LJ
  2195. 7:J(J5J5
  2196. 5K5)5L)
  2197. )K5KI+
  2198. )KMKJ#
  2199. hE*:=*:J
  2200. (9J9JL9
  2201. qtqtqtqt
  2202. qtqtq
  2203. kcR1)
  2204. Rck9JRc
  2205. )1!BR
  2206. cs{Z{
  2207. Bc{J{
  2208. !9JBs
  2209. 1Rk9c
  2210. Rcs9JZ1BR
  2211. !))BZ
  2212. )9JRs
  2213. !1BBc
  2214. 1Jc9Z{Bk
  2215. 1R{c{
  2216. 9Rs1Jk1JsBZ
  2217. ?_?__
  2218. `!b`1
  2219. 7`^///?
  2220. ?b___
  2221. `bOOO
  2222. `<b!R
  2223. istFlags$Updated
  2224.  to Response
  2225. risCN=Lotus Note
  2226. Xotes$$FormScript
  2227. to Folder...
  2228. $Collation1
  2229. ($All)
  2230. ($Profil
  2231. ($Profiles)
  2232. lags$Updated
  2233. N=Lotus Note
  2234. $$FormScript
  2235. ollation1
  2236. O=Lotus Notes
  2237. O=Lotus Notes
  2238. PURSAFO
  2239. |.:#U
  2240. O=Lotus Notes
  2241. CN=Lotus Notes Template Development/O=Lotus Notes
  2242. PURSAFO
  2243. Fde!f^^
  2244. $ViewMapDataset
  2245. $ViewMapLayout
  2246. $NavImagemap
  2247. $$ViewTemplate for ByAuthor
  2248. Document
  2249.     0S0E
  2250. Document
  2251.     0S0E
  2252. EGCAw)
  2253. }{A@>)
  2254. )vwA{}
  2255. kkksss{{{
  2256. {sscZZ1))
  2257. scJ1!
  2258. sBZJ)
  2259. cRB!{c1
  2260. {{{k11)
  2261. CX Image
  2262. *.PCX
  2263. Interest Profile
  2264.     0S0E
  2265.     0S0E
  2266.     0S0E
  2267. imtl?
  2268. twrnof<
  2269. wy&sk
  2270. \6`:d<
  2271. dknsA
  2272. yogb\
  2273. sj`[0
  2274. IHy<8Z
  2275. 01358b
  2276. usu&ruA
  2277. jfd;:
  2278. {{cZZ
  2279. {scZR
  2280. k{sR1)
  2281. Archive Profile
  2282.     0S0E
  2283. Archive Profile
  2284.     0S0E
  2285. Domino
  2286. ViewPreviousPage
  2287. d76c5
  2288. %eQPc$O#"
  2289. $P9:;?'
  2290. G>GVGB0f
  2291. g.WfGAU>G>?
  2292. 98O#"`!
  2293. 35$P:
  2294. ;ePO53k
  2295. `K#O9
  2296. g.[]fH
  2297. AUA>';9O#K!
  2298. H^*BUA
  2299. "#P;>
  2300. .Z/GHF
  2301. K#P'RV
  2302. GIHF0F0F
  2303. -g.D[
  2304. v!3Q:>AB*
  2305. HF0F0F]
  2306. `58'?
  2307. F0F0F0FHIHI
  2308. GFH0\[ZC
  2309. C[E/]
  2310. ?RP"k
  2311. `5P'UBI
  2312. 0GF0\
  2313. [\0/G0
  2314. 0F0HBA;P#k
  2315. v`"P'?
  2316. G0\[E
  2317. [/[0FG
  2318. IHFHI
  2319. `"$:?U
  2320. FGFHI0[
  2321. ID0F0F*HA?eO"!vu
  2322. *HY.I.+I/G\0FGFH0EGI]/0\
  2323. IFIFIG/
  2324. A>;8#
  2325. >?UYCIE
  2326. ZIC-/
  2327. EHGH[
  2328. Z+,YIY
  2329. c8;R?(+Y
  2330. 0G+Eg-H+[/
  2331. Fg,G0
  2332. I    Y.]
  2333. D0GIF
  2334. GI+\I
  2335. ;:Q#K!
  2336. (T@UVG
  2337. IF-.F.+
  2338. @>;:P$#`
  2339. k3#$4lR;A>
  2340. G    +,gI/
  2341. .HFI+C
  2342. &:9c5"k
  2343. k"4M8P:
  2344. Y+B*C
  2345. IF+,+Y
  2346. ,+,+./
  2347. -HBH*C+,
  2348. 4+N#"`n
  2349. HUBf*
  2350. HBXHG
  2351. >A&=?'
  2352. 52a`n
  2353. n!kL47cO
  2354. ;:;98
  2355. eQe;eR
  2356. O$O#5"3Kk!`
  2357. z4"5#76
  2358. cO7d$cN$cb7ON6
  2359. !!!999ccc
  2360. {k{skskcJB9
  2361. sJcR)
  2362. ccZRRJ11)!!
  2363. Archive Profile
  2364.     0S0E
  2365. Domino
  2366. ViewPreviousPage
  2367. Domino
  2368. ViewNextPage
  2369. Domino
  2370. ViewNextPage
  2371. 7$"h#
  2372. B]@D}|
  2373. ,+[*YVjX&:Uo!
  2374. -HC^D
  2375. :jr>@A\]E^RE
  2376. `R`.2P}|
  2377. >rX&Ug!
  2378. SRP}|~
  2379.     HNG12S`
  2380. YXjUo
  2381. U&X>@B]^.`
  2382. mMdPQRS
  2383. `^]BA)X&U!
  2384. XrA]_`J.Q
  2385. Q    RQ1Ndc
  2386. mLcO121
  2387. ^]@)j
  2388. Q2Q2Q
  2389. SRQ21ONdw
  2390. JS`FA>:U
  2391. XB].J.
  2392. g:>BF
  2393. 2Q2QSTST
  2394. cdO1QR
  2395. e2e2e
  2396. FAY:!
  2397. :Y]`SJ
  2398. g:YBF.Q
  2399. RQ1Pd
  2400. 1ONMOP2Q
  2401. FA>&g
  2402. #j?F`
  2403. Q    2.J
  2404. gj)A]E.SJSTSTSTRQ0/bf1
  2405. PTRQNQP
  2406. ]A)&o
  2407. j>@]F`J.
  2408. bm/N1
  2409. 0T2PT
  2410. E]@Yj
  2411. bcL01
  2412. SLmTN0Tc/
  2413. 1RLbQ
  2414. A@)&U!
  2415. /2RLb
  2416. _FEABYj&
  2417. &jYZAF]
  2418. `.bLRc/
  2419. RT0m/
  2420. TLlT2
  2421. T    QRTQ
  2422. :jXY?@
  2423. bcM/RN
  2424. 0/mRS
  2425. .1JSJ._PR_.
  2426. GE^E]C
  2427. Z<(X:U
  2428. osx&:
  2429. @ABFA
  2430. ZA?ZY)Yr)jX&
  2431. j&XjX;VjYi
  2432. WVjWjiV:
  2433. %o#yzyq%y#
  2434. xzy7x
  2435. !!!RRRccckkk
  2436. JBBcZR
  2437. sscBkZ9
  2438. sskZJB1
  2439. RkZ)B1
  2440. {{s11)!!
  2441. By Author
  2442. Categori_ze
  2443. _Edit Document
  2444. Send Docu_ment
  2445. _Forward
  2446. _Move To Folder...
  2447. _Remove From Folder
  2448. O=Lotus Notes
  2449. O=Lotus Notes
  2450. PURSAFO
  2451. |.:#U
  2452. O=Lotus Notes
  2453. CN=Lotus Notes Template Development/O=Lotus Notes
  2454. PURSAFO
  2455. Fde!f^^
  2456. k]A<2
  2457. $TITLE
  2458. $Info
  2459. $$ScriptName
  2460. $Body
  2461. $ACTIONS
  2462. $$ViewTemplate for ByCategory
  2463. Document
  2464. Document
  2465.     0S0E
  2466. EGCAw)
  2467. }{A@>)
  2468. )vwA{}
  2469. kkksss{{{
  2470. {sscZZ1))
  2471. scJ1!
  2472. sBZJ)
  2473. cRB!{c1
  2474. {{{k11)
  2475. Interest Profile
  2476.     0S0E
  2477.     0S0E
  2478.     0S0E
  2479. imtl?
  2480. twrnof<
  2481. wy&sk
  2482. \6`:d<
  2483. dknsA
  2484. yogb\
  2485. sj`[0
  2486. IHy<8Z
  2487. 01358b
  2488. usu&ruA
  2489. jfd;:
  2490. {{cZZ
  2491. {scZR
  2492. k{sR1)
  2493. Archive Profile
  2494.     0S0E
  2495. Archive Profile
  2496.     0S0E
  2497. Document
  2498.     0S0E
  2499. Domino
  2500. ViewPreviousPage
  2501. d76c5
  2502. %eQPc$O#"
  2503. $P9:;?'
  2504. G>GVGB0f
  2505. g.WfGAU>G>?
  2506. 98O#"`!
  2507. 35$P:
  2508. ;ePO53k
  2509. `K#O9
  2510. g.[]fH
  2511. AUA>';9O#K!
  2512. H^*BUA
  2513. "#P;>
  2514. .Z/GHF
  2515. K#P'RV
  2516. GIHF0F0F
  2517. -g.D[
  2518. v!3Q:>AB*
  2519. HF0F0F]
  2520. `58'?
  2521. F0F0F0FHIHI
  2522. GFH0\[ZC
  2523. C[E/]
  2524. ?RP"k
  2525. `5P'UBI
  2526. 0GF0\
  2527. [\0/G0
  2528. 0F0HBA;P#k
  2529. v`"P'?
  2530. G0\[E
  2531. [/[0FG
  2532. IHFHI
  2533. `"$:?U
  2534. FGFHI0[
  2535. ID0F0F*HA?eO"!vu
  2536. *HY.I.+I/G\0FGFH0EGI]/0\
  2537. IFIFIG/
  2538. A>;8#
  2539. >?UYCIE
  2540. ZIC-/
  2541. EHGH[
  2542. Z+,YIY
  2543. c8;R?(+Y
  2544. 0G+Eg-H+[/
  2545. Fg,G0
  2546. I    Y.]
  2547. D0GIF
  2548. GI+\I
  2549. ;:Q#K!
  2550. (T@UVG
  2551. IF-.F.+
  2552. @>;:P$#`
  2553. k3#$4lR;A>
  2554. G    +,gI/
  2555. .HFI+C
  2556. &:9c5"k
  2557. k"4M8P:
  2558. Y+B*C
  2559. IF+,+Y
  2560. ,+,+./
  2561. -HBH*C+,
  2562. 4+N#"`n
  2563. HUBf*
  2564. HBXHG
  2565. >A&=?'
  2566. 52a`n
  2567. n!kL47cO
  2568. ;:;98
  2569. eQe;eR
  2570. O$O#5"3Kk!`
  2571. z4"5#76
  2572. cO7d$cN$cb7ON6
  2573. !!!999ccc
  2574. {k{skskcJB9
  2575. sJcR)
  2576. ccZRRJ11)!!
  2577. Archive Profile
  2578.     0S0E
  2579. Domino
  2580. ViewPreviousPage
  2581. Domino
  2582. ViewNextPage
  2583. Domino
  2584. ViewNextPage
  2585. 7$"h#
  2586. B]@D}|
  2587. ,+[*YVjX&:Uo!
  2588. -HC^D
  2589. :jr>@A\]E^RE
  2590. `R`.2P}|
  2591. >rX&Ug!
  2592. SRP}|~
  2593.     HNG12S`
  2594. YXjUo
  2595. U&X>@B]^.`
  2596. mMdPQRS
  2597. `^]BA)X&U!
  2598. XrA]_`J.Q
  2599. Q    RQ1Ndc
  2600. mLcO121
  2601. ^]@)j
  2602. Q2Q2Q
  2603. SRQ21ONdw
  2604. JS`FA>:U
  2605. XB].J.
  2606. g:>BF
  2607. 2Q2QSTST
  2608. cdO1QR
  2609. e2e2e
  2610. FAY:!
  2611. :Y]`SJ
  2612. g:YBF.Q
  2613. RQ1Pd
  2614. 1ONMOP2Q
  2615. FA>&g
  2616. #j?F`
  2617. Q    2.J
  2618. gj)A]E.SJSTSTSTRQ0/bf1
  2619. PTRQNQP
  2620. ]A)&o
  2621. j>@]F`J.
  2622. bm/N1
  2623. 0T2PT
  2624. E]@Yj
  2625. bcL01
  2626. SLmTN0Tc/
  2627. 1RLbQ
  2628. A@)&U!
  2629. /2RLb
  2630. _FEABYj&
  2631. &jYZAF]
  2632. `.bLRc/
  2633. RT0m/
  2634. TLlT2
  2635. T    QRTQ
  2636. :jXY?@
  2637. bcM/RN
  2638. 0/mRS
  2639. .1JSJ._PR_.
  2640. GE^E]C
  2641. Z<(X:U
  2642. osx&:
  2643. @ABFA
  2644. ZA?ZY)Yr)jX&
  2645. j&XjX;VjYi
  2646. WVjWjiV:
  2647. %o#yzyq%y#
  2648. xzy7x
  2649. !!!RRRccckkk
  2650. JBBcZR
  2651. sscBkZ9
  2652. sskZJB1
  2653. RkZ)B1
  2654. {{s11)!!
  2655. By Category
  2656. Categori_ze
  2657. _Edit Document
  2658. Send Docu_ment
  2659. _Forward
  2660. _Move To Folder...
  2661. _Remove From Folder
  2662. O=Lotus Notes
  2663. O=Lotus Notes
  2664. PURSAFO
  2665. |.:#U
  2666. O=Lotus Notes
  2667. CN=Lotus Notes Template Development/O=Lotus Notes
  2668. PURSAFO
  2669. Fde!f^^
  2670. $TITLE
  2671. $Info
  2672. $$ScriptName
  2673. $Body
  2674. $ACTIONS
  2675. $$ViewTemplate for ReviewStatus
  2676. Document
  2677. Document
  2678.     0S0E
  2679. EGCAw)
  2680. }{A@>)
  2681. )vwA{}
  2682. kkksss{{{
  2683. {sscZZ1))
  2684. scJ1!
  2685. sBZJ)
  2686. cRB!{c1
  2687. {{{k11)
  2688. Interest Profile
  2689.     0S0E
  2690.     0S0E
  2691.     0S0E
  2692. imtl?
  2693. twrnof<
  2694. wy&sk
  2695. \6`:d<
  2696. dknsA
  2697. yogb\
  2698. sj`[0
  2699. IHy<8Z
  2700. 01358b
  2701. usu&ruA
  2702. jfd;:
  2703. {{cZZ
  2704. {scZR
  2705. k{sR1)
  2706. Archive Profile
  2707.     0S0E
  2708. Archive Profile
  2709.     0S0E
  2710. Document
  2711.     0S0E
  2712. Domino
  2713. ViewPreviousPage
  2714. d76c5
  2715. %eQPc$O#"
  2716. $P9:;?'
  2717. G>GVGB0f
  2718. g.WfGAU>G>?
  2719. 98O#"`!
  2720. 35$P:
  2721. ;ePO53k
  2722. `K#O9
  2723. g.[]fH
  2724. AUA>';9O#K!
  2725. H^*BUA
  2726. "#P;>
  2727. .Z/GHF
  2728. K#P'RV
  2729. GIHF0F0F
  2730. -g.D[
  2731. v!3Q:>AB*
  2732. HF0F0F]
  2733. `58'?
  2734. F0F0F0FHIHI
  2735. GFH0\[ZC
  2736. C[E/]
  2737. ?RP"k
  2738. `5P'UBI
  2739. 0GF0\
  2740. [\0/G0
  2741. 0F0HBA;P#k
  2742. v`"P'?
  2743. G0\[E
  2744. [/[0FG
  2745. IHFHI
  2746. `"$:?U
  2747. FGFHI0[
  2748. ID0F0F*HA?eO"!vu
  2749. *HY.I.+I/G\0FGFH0EGI]/0\
  2750. IFIFIG/
  2751. A>;8#
  2752. >?UYCIE
  2753. ZIC-/
  2754. EHGH[
  2755. Z+,YIY
  2756. c8;R?(+Y
  2757. 0G+Eg-H+[/
  2758. Fg,G0
  2759. I    Y.]
  2760. D0GIF
  2761. GI+\I
  2762. ;:Q#K!
  2763. (T@UVG
  2764. IF-.F.+
  2765. @>;:P$#`
  2766. k3#$4lR;A>
  2767. G    +,gI/
  2768. .HFI+C
  2769. &:9c5"k
  2770. k"4M8P:
  2771. Y+B*C
  2772. IF+,+Y
  2773. ,+,+./
  2774. -HBH*C+,
  2775. 4+N#"`n
  2776. HUBf*
  2777. HBXHG
  2778. >A&=?'
  2779. 52a`n
  2780. n!kL47cO
  2781. ;:;98
  2782. eQe;eR
  2783. O$O#5"3Kk!`
  2784. z4"5#76
  2785. cO7d$cN$cb7ON6
  2786. !!!999ccc
  2787. {k{skskcJB9
  2788. sJcR)
  2789. ccZRRJ11)!!
  2790. Archive Profile
  2791.     0S0E
  2792. Domino
  2793. ViewPreviousPage
  2794. Domino
  2795. ViewNextPage
  2796. Domino
  2797. ViewNextPage
  2798. 7$"h#
  2799. B]@D}|
  2800. ,+[*YVjX&:Uo!
  2801. -HC^D
  2802. :jr>@A\]E^RE
  2803. `R`.2P}|
  2804. >rX&Ug!
  2805. SRP}|~
  2806.     HNG12S`
  2807. YXjUo
  2808. U&X>@B]^.`
  2809. mMdPQRS
  2810. `^]BA)X&U!
  2811. XrA]_`J.Q
  2812. Q    RQ1Ndc
  2813. mLcO121
  2814. ^]@)j
  2815. Q2Q2Q
  2816. SRQ21ONdw
  2817. JS`FA>:U
  2818. XB].J.
  2819. g:>BF
  2820. 2Q2QSTST
  2821. cdO1QR
  2822. e2e2e
  2823. FAY:!
  2824. :Y]`SJ
  2825. g:YBF.Q
  2826. RQ1Pd
  2827. 1ONMOP2Q
  2828. FA>&g
  2829. #j?F`
  2830. Q    2.J
  2831. gj)A]E.SJSTSTSTRQ0/bf1
  2832. PTRQNQP
  2833. ]A)&o
  2834. j>@]F`J.
  2835. bm/N1
  2836. 0T2PT
  2837. E]@Yj
  2838. bcL01
  2839. SLmTN0Tc/
  2840. 1RLbQ
  2841. A@)&U!
  2842. /2RLb
  2843. _FEABYj&
  2844. &jYZAF]
  2845. `.bLRc/
  2846. RT0m/
  2847. TLlT2
  2848. T    QRTQ
  2849. :jXY?@
  2850. bcM/RN
  2851. 0/mRS
  2852. .1JSJ._PR_.
  2853. GE^E]C
  2854. Z<(X:U
  2855. osx&:
  2856. @ABFA
  2857. ZA?ZY)Yr)jX&
  2858. j&XjX;VjYi
  2859. WVjWjiV:
  2860. %o#yzyq%y#
  2861. xzy7x
  2862. !!!RRRccckkk
  2863. JBBcZR
  2864. sscBkZ9
  2865. sskZJB1
  2866. RkZ)B1
  2867. {{s11)!!
  2868. Review Status
  2869. Categori_ze
  2870. _Edit Document
  2871. Send Docu_ment
  2872. _Forward
  2873. _Move To Folder...
  2874. _Remove From Folder
  2875. O=Lotus Notes
  2876. O=Lotus Notes
  2877. PURSAFO
  2878. |.:#U
  2879. O=Lotus Notes
  2880. CN=Lotus Notes Template Development/O=Lotus Notes
  2881. PURSAFO
  2882. Fde!f^^
  2883. iu0{>
  2884. $TITLE
  2885. $Info
  2886. $$ScriptName
  2887. $Body
  2888. $ACTIONS
  2889. $$ViewTemplate for All
  2890. Document
  2891.     0S0E
  2892. EGCAw)
  2893. }{A@>)
  2894. )vwA{}
  2895. kkksss{{{
  2896. {sscZZ1))
  2897. scJ1!
  2898. sBZJ)
  2899. cRB!{c1
  2900. {{{k11)
  2901. Interest Profile
  2902.     0S0E
  2903.     0S0E
  2904.     0S0E
  2905. imtl?
  2906. twrnof<
  2907. wy&sk
  2908. \6`:d<
  2909. dknsA
  2910. yogb\
  2911. sj`[0
  2912. IHy<8Z
  2913. 01358b
  2914. usu&ruA
  2915. jfd;:
  2916. {{cZZ
  2917. {scZR
  2918. k{sR1)
  2919. Archive Profile
  2920.     0S0E
  2921. Archive Profile
  2922.     0S0E
  2923. Document
  2924.     0S0E
  2925. Domino
  2926. ViewPreviousPage
  2927. d76c5
  2928. %eQPc$O#"
  2929. $P9:;?'
  2930. G>GVGB0f
  2931. g.WfGAU>G>?
  2932. 98O#"`!
  2933. 35$P:
  2934. ;ePO53k
  2935. `K#O9
  2936. g.[]fH
  2937. AUA>';9O#K!
  2938. H^*BUA
  2939. "#P;>
  2940. .Z/GHF
  2941. K#P'RV
  2942. GIHF0F0F
  2943. -g.D[
  2944. v!3Q:>AB*
  2945. HF0F0F]
  2946. `58'?
  2947. F0F0F0FHIHI
  2948. GFH0\[ZC
  2949. C[E/]
  2950. ?RP"k
  2951. `5P'UBI
  2952. 0GF0\
  2953. [\0/G0
  2954. 0F0HBA;P#k
  2955. v`"P'?
  2956. G0\[E
  2957. [/[0FG
  2958. IHFHI
  2959. `"$:?U
  2960. FGFHI0[
  2961. ID0F0F*HA?eO"!vu
  2962. *HY.I.+I/G\0FGFH0EGI]/0\
  2963. IFIFIG/
  2964. A>;8#
  2965. >?UYCIE
  2966. ZIC-/
  2967. EHGH[
  2968. Z+,YIY
  2969. c8;R?(+Y
  2970. 0G+Eg-H+[/
  2971. Fg,G0
  2972. I    Y.]
  2973. D0GIF
  2974. GI+\I
  2975. ;:Q#K!
  2976. (T@UVG
  2977. IF-.F.+
  2978. @>;:P$#`
  2979. k3#$4lR;A>
  2980. G    +,gI/
  2981. .HFI+C
  2982. &:9c5"k
  2983. k"4M8P:
  2984. Y+B*C
  2985. IF+,+Y
  2986. ,+,+./
  2987. -HBH*C+,
  2988. 4+N#"`n
  2989. HUBf*
  2990. HBXHG
  2991. >A&=?'
  2992. 52a`n
  2993. n!kL47cO
  2994. ;:;98
  2995. eQe;eR
  2996. O$O#5"3Kk!`
  2997. z4"5#76
  2998. cO7d$cN$cb7ON6
  2999. !!!999ccc
  3000. {k{skskcJB9
  3001. sJcR)
  3002. ccZRRJ11)!!
  3003. Archive Profile
  3004.     0S0E
  3005. Domino
  3006. ViewPreviousPage
  3007. Domino
  3008. ViewNextPage
  3009. Domino
  3010. ViewNextPage
  3011. 7$"h#
  3012. B]@D}|
  3013. ,+[*YVjX&:Uo!
  3014. -HC^D
  3015. :jr>@A\]E^RE
  3016. `R`.2P}|
  3017. >rX&Ug!
  3018. SRP}|~
  3019.     HNG12S`
  3020. YXjUo
  3021. U&X>@B]^.`
  3022. mMdPQRS
  3023. `^]BA)X&U!
  3024. XrA]_`J.Q
  3025. Q    RQ1Ndc
  3026. mLcO121
  3027. ^]@)j
  3028. Q2Q2Q
  3029. SRQ21ONdw
  3030. JS`FA>:U
  3031. XB].J.
  3032. g:>BF
  3033. 2Q2QSTST
  3034. cdO1QR
  3035. e2e2e
  3036. FAY:!
  3037. :Y]`SJ
  3038. g:YBF.Q
  3039. RQ1Pd
  3040. 1ONMOP2Q
  3041. FA>&g
  3042. #j?F`
  3043. Q    2.J
  3044. gj)A]E.SJSTSTSTRQ0/bf1
  3045. PTRQNQP
  3046. ]A)&o
  3047. j>@]F`J.
  3048. bm/N1
  3049. 0T2PT
  3050. E]@Yj
  3051. bcL01
  3052. SLmTN0Tc/
  3053. 1RLbQ
  3054. A@)&U!
  3055. /2RLb
  3056. _FEABYj&
  3057. &jYZAF]
  3058. `.bLRc/
  3059. RT0m/
  3060. TLlT2
  3061. T    QRTQ
  3062. :jXY?@
  3063. bcM/RN
  3064. 0/mRS
  3065. .1JSJ._PR_.
  3066. GE^E]C
  3067. Z<(X:U
  3068. osx&:
  3069. @ABFA
  3070. ZA?ZY)Yr)jX&
  3071. j&XjX;VjYi
  3072. WVjWjiV:
  3073. %o#yzyq%y#
  3074. xzy7x
  3075. !!!RRRccckkk
  3076. JBBcZR
  3077. sscBkZ9
  3078. sskZJB1
  3079. RkZ)B1
  3080. {{s11)!!
  3081. ($All)
  3082. Categori_ze
  3083. _Edit Document
  3084. Send Docu_ment
  3085. _Forward
  3086. _Move To Folder...
  3087. _Remove From Folder)
  3088. O=Lotus Notes
  3089. O=Lotus Notes
  3090. PURSAFO
  3091. |.:#U
  3092. O=Lotus Notes
  3093. CN=Lotus Notes Template Development/O=Lotus Notes
  3094. PURSAFO
  3095. Fde!f^^
  3096. $TITLE
  3097. $Info
  3098. $$ScriptName
  3099. $Body
  3100. $ACTIONS
  3101. ($All)
  3102. TextBox1 All Documents
  3103. ($All)
  3104. Text7 By Author
  3105. Notes
  3106. ByAuthor
  3107. Text8 By Category
  3108. Notes
  3109. ByCategory
  3110. Text9 By Review Status
  3111. Notes
  3112. ReviewStatus
  3113. Text11 Archiving
  3114. Notes
  3115. Archiving
  3116. Text13 7
  3117. Text14 X
  3118. GraphicButton5
  3119. kcR1)
  3120. Rck9JRc
  3121. )1!BR
  3122. cs{Z{
  3123. Bc{J{
  3124. !9JBs
  3125. 1Rk9c
  3126. Rcs9JZ1BR
  3127. !))BZ
  3128. )9JRs
  3129. !1BBc
  3130. 1Jc9Z{Bk
  3131. 1R{c{
  3132. 9Rs1Jk1JsBZ
  3133. GraphicButton4
  3134. -<M>M
  3135. K)MTMT<>%h
  3136. LJ<)T
  3137. J)<LP
  3138. 5J)J5L9L
  3139. yc!:7!
  3140. :"!: 8LJ
  3141. c:7'"
  3142. 7:L(J5J5
  3143. 5K5)5L)
  3144. )K)KI+
  3145. E*:=*:L
  3146. (9J9JL9
  3147. |k{gnj
  3148. qtqtq
  3149. t    tqt
  3150. t    tqt
  3151. t    tqt
  3152. t    tqt
  3153. kcR1)
  3154. Rck9JRc
  3155. )1!BR
  3156. cs{Z{
  3157. Bc{J{
  3158. !9JBs
  3159. 1Rk9c
  3160. Rcs9JZ1BR
  3161. !))BZ
  3162. )9JRs
  3163. !1BBc
  3164. 1Jc9Z{Bk
  3165. 1R{c{
  3166. 9Rs1Jk1JsBZ
  3167. W49F/V0
  3168. vrv'v
  3169. ?_?__
  3170. `!b`1
  3171. 7`^///?
  3172. ?b___
  3173. `bOOO
  3174. `<b!R
  3175. otes$$FormScript
  3176. to Folde
  3177. ($All)
  3178. O=Lotus Notes
  3179. O=Lotus Notes
  3180. PURSAFO
  3181. |.:#U
  3182. O=Lotus Notes
  3183. CN=Lotus Notes Template Development/O=Lotus Notes
  3184. PURSAFO
  3185. Fde!f^^
  3186. %|Q~.4Zh
  3187. P$Z![
  3188. $ViewMapDataset
  3189. $ViewMapLayout
  3190. $NavImagemap
  3191. O=Lotus Notes
  3192. O=Lotus Notes
  3193. PURSAFO
  3194. |.:#U
  3195. O=Lotus Notes
  3196. CN=Lotus Notes Template Development/O=Lotus Notes
  3197. PURSAFO
  3198. Fde!f^^
  3199. _{$t^
  3200. $TITLE
  3201. $Info
  3202. $Body
  3203. Times New Roman
  3204. Archive Profile
  3205. (WebArchiveSave)
  3206. (WebArchiveOpen)
  3207. '++LotusScript Development Environment:2:5:(Options):0:66
  3208. Option Public
  3209. '++LotusScript Development Environment:2:5:(Forward):0:1
  3210. Declare Sub Initialize
  3211. Declare Sub ProcessExistingArchiveDB
  3212. Declare Sub ProcessNonExistingArchiveDB 
  3213. Declare Sub ProcessArchiveDbExists
  3214. Declare Sub CreateNewArchiveDB
  3215. '++LotusScript Development Environment:2:5:(Declarations):0:10
  3216. %INCLUDE "lsconst.lss"
  3217. Dim s As NotesSession
  3218. Dim w As NotesUIWorkspace
  3219. Dim db As NotesDatabase
  3220. Dim existingdb As NotesDatabase
  3221. Dim archivedb As NotesDatabase
  3222. Dim view As NotesView
  3223. Dim note As NotesDocument
  3224. Dim profile As NotesDocument
  3225. Dim archivedoc As NotesDocument
  3226. Dim doc As NotesUIDocument
  3227. Dim DocWasSaved As Integer
  3228. Dim DoNotClose As Variant
  3229. Dim ExistingServer As String
  3230. Dim ExistingPath As String
  3231. '++LotusScript Development Environment:2:2:Initialize:1:10
  3232. Sub Initialize
  3233.      
  3234. End Sub
  3235. '++LotusScript Development Environment:2:2:ProcessExistingArchiveDB:1:12
  3236. Sub ProcessExistingArchiveDB
  3237. an existing archive already exists and the user has choosen to create a new one
  3238. this function gets called on one of two occasions
  3239. either the document has a value in the tmpArchivePath field
  3240. or the user entered a server and path that has an existing database
  3241. we need to handle both cases
  3242. %END REM
  3243.      
  3244. End Sub
  3245. '++LotusScript Development Environment:2:2:ProcessNonExistingArchiveDB:1:8
  3246. Sub ProcessNonExistingArchiveDB 
  3247.      On Error Goto ProcessError         
  3248.      On Error 4005 Goto DbCreateError
  3249.      'render the dialog box to get the location of the archive database
  3250.      If (w.DialogBox("(ArchiveProfileDlg)",True,True,"Specify New Location")) Then
  3251.           'see if the archive database exists
  3252.           Set archivedb = New NotesDatabase(note.ArchiveServer(0),note.ArchivePath(0))
  3253.           If (archivedb.IsOpen) Then
  3254.                Msgbox "Database already exists. Enter a new location"
  3255.                ProcessNonExistingArchiveDB          
  3256.           Else
  3257.                Set archivedb = db.CreateCopy(note.ArchiveServer(0),note.ArchivePath(0))
  3258.                archivedb.Title = db.Title & " (Archive)"
  3259.           End If
  3260.           Call doc.Reload
  3261.           Call doc.Refresh
  3262.      Else
  3263.           note.ArchiveServer = ""
  3264.           note.ArchivePath = ""
  3265.      End If
  3266.      Exit Sub
  3267. DbCreateError:
  3268.      Select Case Msgbox("Error creating archive database. The server may be down or you don't have access to create new databases on the server. Click Yes to try a different location now or No to cancel.",36,"Error")
  3269.      Case 6
  3270.           ProcessNonExistingArchiveDb
  3271.      End Select
  3272.      Exit Sub        
  3273. ProcessError:
  3274.      Msgbox Error & " - (ProcessNonExistingArchiveDB)"
  3275.      Exit Sub
  3276. End Sub
  3277. '++LotusScript Development Environment:2:2:ProcessArchiveDbExists:1:8
  3278. Sub ProcessArchiveDbExists
  3279.      'this function gets called if a database already exists in the tmpArchiveServer field
  3280.      'render the dialog box to get the location of the archive database
  3281.      On Error 4005 Goto DbCreateError
  3282.      If (w.DialogBox("(ProcessExistingDbDlg)",True,True,"Specify New Location")) Then
  3283.           On Error Resume Next          
  3284.           'see if the archive database exists
  3285.           Set archivedb = New NotesDatabase(note.ArchiveServer(0),note.ArchivePath(0))
  3286.           If (archivedb.IsOpen) Then
  3287.                Msgbox "Database already exists. Enter a new location"
  3288.                ProcessArchiveDbExists          
  3289.           Else
  3290.                Call CreateNewArchiveDB
  3291.                archivedb.Title = db.Title & " (Archive)"
  3292.           End If
  3293.           Call doc.reload
  3294.           Call doc.refresh
  3295.      End If        
  3296.      Exit Sub
  3297. DbCreateError:
  3298.      Select Case Msgbox("Error creating archive database. The server may be down or you don't have access to create new databases on the server. Click Yes to try a different location now or No to cancel.",36,"Error")
  3299.      Case 6
  3300.           ProcessNonExistingArchiveDb
  3301.      End Select
  3302.      Exit Sub        
  3303. End Sub
  3304. '++LotusScript Development Environment:2:2:CreateNewArchiveDB:1:8
  3305. Sub CreateNewArchiveDB
  3306.      On Error 4005 Goto DbCreateError
  3307.      On Error Goto ProcessError
  3308.      
  3309. 'first, create the archive database     
  3310.      Set archivedb = db.CreateCopy(note.ArchiveServer(0),note.ArchivePath(0))
  3311.      
  3312. 'if the profile says to copy new documents, then copy them now
  3313.      If (note.CopyOptions(0) = "1") Then
  3314.           Set allDocs = existingdb.AllDocuments
  3315.           For i = 1 To allDocs.Count          
  3316.                Set archivedoc = allDocs.GetNthDocument(i)     
  3317.                Call archivedoc.CopyToDatabase(archivedb)
  3318.           Next
  3319.      End If
  3320.      
  3321. 'if the profile says we should delete the original archive database, then remove it
  3322.      If (note.DeleteOptions(0) = "1") Then Call existingdb.Remove
  3323.      
  3324.      Exit Sub
  3325. DbCreateError:
  3326.      Select Case Msgbox("Error creating archive database. The server may be down or you don't have access to create new databases on the server. Click Yes to try a different location now or No to cancel.",36,"Error")
  3327.      Case 6
  3328.           ProcessNonExistingArchiveDb
  3329.      End Select
  3330.      Exit Sub        
  3331. ProcessError:
  3332.      Msgbox Error & " - (ProcessNonExistingArchiveDB)"
  3333.      Exit Sub
  3334. End Sub
  3335.  Archive Profile'++LotusScript Development Environment:2:5:(Options):0:66
  3336. '++LotusScript Development Environment:2:5:(Forward):0:1
  3337. Declare Sub Queryclose(Source As Notesuidocument, Continue As Variant)
  3338. Declare Sub Querysave(Source As Notesuidocument, Continue As Variant)
  3339. Declare Sub Postopen(Source As Notesuidocument)
  3340. '++LotusScript Development Environment:2:5:(Declarations):0:2
  3341. '++LotusScript Development Environment:2:2:BindEvents:1:129
  3342. Private Sub BindEvents(Byval Objectname_ As String)
  3343.      Static Source As NOTESUIDOCUMENT
  3344.      Set Source = Bind(Objectname_)
  3345.      On Event Queryclose From Source Call Queryclose
  3346.      On Event Querysave From Source Call Querysave
  3347.      On Event Postopen From Source Call Postopen
  3348. End Sub
  3349. '++LotusScript Development Environment:2:2:Queryclose:1:12
  3350. Sub Queryclose(Source As Notesuidocument, Continue As Variant)
  3351.      
  3352.      If (DocWasSaved = False) Or (profile Is Nothing) Or DoNotClose Then Exit Sub
  3353.      
  3354.      ItemList = profile.Items
  3355.      Forall n In ItemList
  3356.           profile.RemoveItem(n.Name)    
  3357.      End Forall
  3358.      note.CopyAllItems profile
  3359.      profile.SaveOptions = "1"
  3360.      profile.save True, True
  3361.      
  3362. End Sub
  3363. '++LotusScript Development Environment:2:2:Querysave:1:12
  3364. Sub Querysave(Source As Notesuidocument, Continue As Variant)
  3365.      
  3366.      DocWasSaved = True
  3367.      DoNotClose = False     
  3368.      If Not(profile Is Nothing) Then note.SaveOptions = "0"
  3369.      If (note.ArchivePath(0) = "") Then Msgbox "You will need to specify a location of the archive database before you can archive documents.",16     
  3370.      source.Reload
  3371.      source.RefreshHideFormulas  
  3372. End Sub
  3373. '++LotusScript Development Environment:2:2:Postopen:1:12
  3374. Sub Postopen(Source As Notesuidocument)
  3375.      'initialize global variables
  3376.      Set note = source.Document
  3377.      Set w = New NotesUIWorkspace
  3378.      Set s = New NotesSession
  3379.      Set db = s.CurrentDatabase
  3380.      Set view = db.GetView("Archiving")
  3381.      Set doc = source
  3382.      'turn off auto reload to make processing faster
  3383.      source.AutoReload = False
  3384.      'if this is not a new doc, we don't need to continue
  3385.      If Not (source.IsNewDoc) Then Exit Sub
  3386.      'get the existing profile
  3387.      key = "Archive Profile"
  3388.      Set profile = view.GetDocumentByKey(key,False)
  3389.      If profile Is Nothing Then
  3390.           'an existing profile was not found
  3391.           note.ProtectFromArchive = 1
  3392.           note.ExcludeFromView = "D"
  3393.           note.From = "Archiving"
  3394.           note.Subject = "Archive Profile"
  3395.           note.Categories = "(Archive)"
  3396.           Call note.ReplaceItemValue("_ViewIcon", 11)
  3397.           source.reload
  3398.      Else
  3399.           'copy the profile fields to this document
  3400.           ItemList = note.Items
  3401.           Forall n In ItemList
  3402.                note.RemoveItem(n.Name)    
  3403.           End Forall
  3404.           profile.CopyAllItems note
  3405.           source.Reload
  3406.           If source.EditMode Then source.Refresh
  3407.      End If
  3408.      
  3409.      DocWasSaved = False
  3410.      
  3411. End Sub
  3412. K     ,`
  3413.     Subject used for displaying the form name in the views
  3414. Archive Profile
  3415. Subject
  3416.     Used for returning information to the user when the form is saved on the web
  3417. $$Return
  3418. STS)TST
  3419. S)T)TS)
  3420. )SdSdS)d
  3421. )S)S)
  3422. )T)TSdT)Sd
  3423. )SdTdS)T)T
  3424. S)dSd)S)dSd
  3425. S    )5dSdST)T
  3426. S)SdSdT)STc5c
  3427. d)S)dB
  3428. d    5Sd5)Td5S
  3429. )d5d5d5d)5
  3430. dSdS)Td)d5ST)dS
  3431. ScdS)S)
  3432.     XWXcY5YSY
  3433. 5BT)d
  3434. 5d)dS
  3435. SBSdBSd5ST)5TS
  3436. Sd)Sd)dS)Sd)d)Sd5d
  3437. 5d)S)ST)T)
  3438. SdSc)cmcS5d
  3439. BcBmcdmBSc5c5B5B
  3440. 5dSB5
  3441. cBcdcBcBc5Bm5m
  3442. SdB5dcd5dBS)cd
  3443. Sd)B5T5)S)dS
  3444. cYc5SY5
  3445. )S)dS)
  3446. dSd)S5S
  3447. SB)dS)S)d
  3448. Sd5BcdSBcBcB
  3449. d)mdc5B
  3450. Bdcdc
  3451. S)S)SB5d5BcB
  3452. )TcdSc5d)Yd5dBdBcd5d5m5
  3453. 5d)mBmdm
  3454. cmJ5dc
  3455. m    SBm5mcdl5
  3456. BcmBcB
  3457. mBdSd5J
  3458. ml>lB
  3459. X,_f6*WlcYc
  3460. _h VWl
  3461. )d)ST
  3462. )SdTdSdcd5cdB5
  3463. BcBdSd5BSBd5dYBdSmBdS)BS
  3464. c)cdSm
  3465. BdmcmJ
  3466. )SdSmcd)dS5
  3467. 5BdSdm5mdm
  3468. m5SJd5dm5cBdcdBcBcmc
  3469. Jcm5dSdBmcBc5lmJmJ
  3470. /lCK>K
  3471. l>mJc
  3472. /m5cldmCm
  3473. n>cmKcmJ5BJBmBlc>l
  3474. J>mJ>5BSlCT
  3475. Z`i+? DWC
  3476. ]i+f6*
  3477. cm5dY
  3478. d)S)TS)
  3479. d(BSBcB5Bc)BdSdB
  3480. Bm5Bd5m5BdScBdTBd5m5Sm5mB
  3481. B5mBSdB
  3482. JB)mJlmK5c5
  3483. KBmB5cJl
  3484. B5lJlBm
  3485. BmBl5BdmcmB5mB
  3486. 5    Scm5mB>ml
  3487. lJKCK
  3488. B>LKLC>LKDv
  3489. DCD>lClm>m
  3490. KlJ>KJ
  3491.     ,b-^Eh D*
  3492. J>KC>KnCqf_,
  3493. +f 6*>l
  3494. S)d)S)S)dS
  3495. ScBd5c
  3496. SdBcB
  3497. BSBSm5c
  3498. d    BKlm
  3499. c5cB>mB
  3500. Bm5cJmJK>K>m5c
  3501. mJStJlBm
  3502. Bm5dBc5J
  3503. l    5mBlKJcBl
  3504. KJc5B5
  3505. mJKJcmKJKv>K
  3506. *Xl*qf
  3507. mclJvn>n
  3508. C    q *Xn qLM
  3509. lJmKL
  3510. XW*fDVCMDL
  3511. LC/D*Df
  3512. _<E?fDq*
  3513. XWlXY
  3514. dY5d5S
  3515. BSdB)dSdB)c
  3516. m5c5Bdmlm
  3517. B5B5mBlJSmc
  3518. >    KmBlBcKmc
  3519. Bc5cBcK>tKJl>mJ5J
  3520. KJ>JlJv>J>JvKm
  3521. mKvKv
  3522. JmlJK>mcmc5cmJBl>vKm>mKv
  3523.  Ef"xDL!v>
  3524. YhR"6L
  3525. LvqLY
  3526. Z1Dn*>LK
  3527. ZsEfD
  3528. KL>K>lL
  3529. F<_E?;DC>m
  3530. SZDXl>m
  3531. cBYBd5T)
  3532. TdSdB
  3533. mBm5c
  3534. >JtncBcBm>KmcmcJ
  3535. m    d)5c
  3536. K/LKv
  3537. BJLmJmLJMKJt5KJdLK>JL
  3538. m>5cBJKvLJLMJ
  3539. f_1?x*nmKm
  3540. ]i+?DM
  3541. iFE;qL>K
  3542. _ih?"D*L
  3543. CLMD8qY
  3544. *n>m/6Y
  3545. Vjhzf
  3546. h[fD6>*lm
  3547. JmBcX
  3548. m5dBYS
  3549. T)5dc
  3550. cBd5B
  3551. cml>J
  3552. Jm5KcBK>mKm
  3553. mKmcmJcB>lJKJ
  3554. LJvLvLm
  3555. lBJvLK
  3556. >mLJK
  3557. LBvK>m
  3558. mKm/Lvdm
  3559. >tJmLm>L
  3560. LtmJL
  3561. mJ>tcLBdlm
  3562. tlc5dKd
  3563. cmKJLl
  3564. L>Y6h
  3565. ojO Cn
  3566. BKJmJlMS
  3567. _-F?zDnMLxKLvC
  3568. RC8M!8"M!R 
  3569. =|@$F0N;xCL>
  3570. UV,jFX
  3571. V`j+ 6DLK
  3572. S)dBS5
  3573. STSdc)dSd5SBcBcYB5J>5J>
  3574. BcJmdBlJ
  3575. JlJK>
  3576. mlBmK
  3577. m    KmcBcBJlK
  3578. vKLmKvK
  3579. >mB5J5BKJvm5m
  3580. Jm>JKmB5dJ
  3581. Jm>J>KvJmJLKmL
  3582. vLKJL
  3583. mMvKJMvmJLcmL
  3584. JlmLvlmB
  3585. m>B>Jv
  3586. tLKM>xE$k=rw
  3587. .GFh6Cn
  3588. mJlKx
  3589. aw-r|jh?qCKLvLxMY
  3590. HpGE?;DM
  3591. l>lv T
  3592. Vr,sFRN"R!R8!N"1 
  3593. $F1?;LCMnLM 
  3594. poiF?6*Cnv>
  3595. ^,[f *l/
  3596. Jcd5mdmcmc
  3597. )SdBdmdc5BcdJldc
  3598. mBc5lJvlKvc
  3599. Km>JLmlLcmK>m5
  3600. >BmKLvlJ
  3601. lmJvKLKvLm>lK5
  3602. J    KmL>mMLJm
  3603. LvLMKJL
  3604. KMLJmKvmJLlJ
  3605. JmKJmlKmJmKlL lYU
  3606. Y.pGEfD
  3607. >LKLK>D
  3608. \Ia.pHkFh"Dn>
  3609. _.=Ab
  3610. ^7g{_
  3611. V7p@OE?R1;9;>
  3612. G%H|+
  3613. ?"!LCLD?T
  3614. h DCLlLmJlX
  3615. ,ojf D
  3616. cB5Bc
  3617. TdBd5dBmcB5cB
  3618. BdBlBcBlclKv>vKmKv
  3619. KLvLJLJ
  3620. KmKmvJ
  3621. cBmKJKmJKv
  3622. JBl>m
  3623. K    mvmKvJKvL
  3624. mJLKLxtJLvm
  3625. lmJKml
  3626. Blm>JtmK>KnS
  3627. wr|j? *l>tLlKL*
  3628. Ta.=Ho
  3629. <jFE"NDCDL"C"*S
  3630. D!8q?
  3631. WerH@
  3632. `b,Ef *DLKmJ
  3633. BJcBmB
  3634. ST)Bc5dBcJcmJd5
  3635. >JKm>JKv5mcmJl
  3636. KJ>Jml5JKvl
  3637. BmJKLvmKv
  3638. JMLvLvL
  3639. mJmJ>t
  3640. /KlKJKcL
  3641. >lmBld5BmBcKtmKL
  3642. KmJ>JKv
  3643. lmLvLvL
  3644. vLvLJKlmBlJ
  3645. JKmLlKv
  3646. _yAH<hqCxMlJKlDX
  3647. |@_E?DqMm>m>C*
  3648. x8"8D;WYXY\e7Aw6YXY,I3=:
  3649. T:#18"8M!E
  3650. .    p@_RNxDLK
  3651. 7rojfq*Mvl>
  3652. )ScBc5cm
  3653. 5mBKm>JKtKlJmc
  3654. vKm>J
  3655. >KJKJm>JKv
  3656. KJtJL
  3657. mJKmJKl
  3658. vLmtvKm
  3659. BJvLKvJK>Jm>JvJKLvLK
  3660. a7a=<+qDMLvL
  3661. Zw.=pkuOFRx!nM>JKxq
  3662. ApH-2$<1OR
  3663. NR"N"E
  3664. I3%|P
  3665. X:41R"R"
  3666. yap|GsF?qnK>
  3667. 7abkFE *nL>JcC
  3668. T)TdB)dcm
  3669. >mlBlJmBKmc
  3670. KLKJK
  3671. >m>mBvKvBK
  3672. KLJlKJmLJc
  3673. Kv>cJ
  3674. v>BvLJKLBmB
  3675. lBLvK
  3676. LJLvKvKt
  3677. mLvLvJ
  3678. KvLlJmJ
  3679. 5mKLKmL
  3680. }w.=<~f"xLJtMlD
  3681. ^.r=GP_hz"DnK>t>ln 
  3682. H@G@#F
  3683. 1EN";
  3684. 3A&Q*
  3685. 6    'w3H2$~
  3686. 7yroGuFf8xL
  3687. e7rap`<jE"q>
  3688. m    SdSdSd)S)
  3689. B5mBcKdmJBJm
  3690. JmBmJ
  3691. vmJ>mLJmKvKm
  3692. KLmMKv
  3693. v    5cJKvKBJm
  3694. LvKJKmKL
  3695. cmltJ
  3696. JmJmKJ
  3697. 5cKxmvc>
  3698. K>JKmJlJKd
  3699. L    vxvxLtJvK
  3700. vKtm>m
  3701. KmBKvm
  3702. W}7A|iO;nxK>m
  3703.     r.p|kFEfD
  3704. x+>xlJKn>D6
  3705.  YX+3
  3706. H2;*Y
  3707. ^ger-@$ENxLMmK>m>Cq
  3708. rpG<F nDv
  3709. n    Lmcm
  3710.     mBc5d5dBS
  3711. m5)m>
  3712. cJ>B>mB
  3713. Kv5Bc
  3714. BJm/v
  3715. vJBLvLvL
  3716. mKmJcv
  3717. JKJKLlvmKcL
  3718. cKvJv
  3719. JKvBvKLvJ>lJlLvJKB
  3720. {wrG<O
  3721. nJnMvM*
  3722. er=kj[;6CMK>LKlJmMqE*
  3723. V}7.p,sFR?
  3724. M    K>Jl>KL;W
  3725.     ,p-@jE?qD
  3726. d5)d5S
  3727. dBdSBd)
  3728. m5m5J5mJ>J5cBm
  3729. tKJmJmc5mBKJKLm5mL/vK
  3730. vLK>JK
  3731. JmKJv
  3732. LJKtL
  3733. mJ>mK
  3734. mJmJKmKc
  3735. JmLcmJcBmKL
  3736. tJvLmB
  3737. xLvKvLvKmKMLmL
  3738. KLvJKmJB
  3739. _yAGi$ORxMLKvLvY
  3740. XAr,<_f?DC
  3741. mxKv>KC"?@E6
  3742. Ypy.p-iEF?n
  3743. vcKJlmnDh]
  3744. ap,sEf6
  3745. lmBSB5S
  3746. ScB5c
  3747. dSc5J>
  3748. dBdBJKm
  3749. m>JvK>Bd5mlJcBKJvm
  3750. vJvmLJ
  3751. 5m>BKBvBKJLmBJt
  3752. JL>m>KJLKvKLKvKLJmJmJvK
  3753. JvKMvJKL
  3754. JmvLMvLvLKtKLtKmJKL
  3755. xF@<`a
  3756. .    wy7wr=|uO
  3757. D"OGH=bG@_h; *Mmv/vLKBLxM?#@%
  3758. p`@jhNxDLnKLvKJ>KD"Fk^Z
  3759. ap`jEf6*v>
  3760. m5mcmSmTS)
  3761. )d)SBS5dT)TU
  3762. BdSdSBS
  3763. BYSBlcm>K5mJlJltd5d5mJBcml
  3764. mvJKmLm5>JKJKJm
  3765. B5dlL
  3766. m5BcBcJ
  3767. K    JvKmBKLtJ
  3768. vJvKvKLvJ>mK
  3769. JmLvJK
  3770. mvmKcJn>D?EiG
  3771. |@EO MxL
  3772. zEsGuiF+f 6lMc
  3773. JLtLmC!N1$@H
  3774. GHo-i
  3775. K    BlnDfE,ob
  3776. i[Z nW>m
  3777. )S)ST)
  3778. TSTSTST
  3779. )dc)cB
  3780. d5d5mJcJdm>B>cJmdS5d5dc5Bm>m
  3781. lm>JmK5B5Bm
  3782. K    lK>dKmc>v
  3783. KvJMKJ
  3784. J5mBmLvJm
  3785. mJLBmBLvKvK
  3786. LmJm>JmLJmM
  3787. mJKmKLD
  3788. sji,@
  3789. G#<$F1?zMxKLtvKvL"N?hOFE? nWlvKcmKvJm
  3790. F_hf n*DlJ
  3791. >lC;EFjk-k^<hf V
  3792. TdS)S)
  3793. S)d)5)dS)S)SB
  3794. S)dSB
  3795. md5B5Jl
  3796. Bc5mlJ
  3797. JmKJcm
  3798. c5mJmJ5mJl
  3799. mvJBmK
  3800. vKLvKl
  3801. lKJcmKm>
  3802. KJvLmJ
  3803. KBKmK/mJmK
  3804. KvLB>ml
  3805. tKlJK
  3806. vLnMzEfE1s
  3807. E    hFER?x"vL
  3808. q    Df;fD6M*
  3809. B5mJK
  3810. KD8N91#$
  3811. #1EFEh?6 DWm>lJm>
  3812. 5cBYc*C]
  3813. ]*VYXdY
  3814. S)TUTS
  3815. S    d)dS5dm5B
  3816. )5SdBcBcBm>
  3817. JBcJld5Jc5B5JBKJc
  3818. JKJmBLml
  3819. mJBKmlBmJK>JKJv
  3820. v    KLKvKLJmc
  3821. NfE ?q?
  3822. CDnD6MDLnm
  3823. J>mLMCM8
  3824. ;? ;6
  3825. Sd5dYmX*nV
  3826. V6 VWXl
  3827. )TS)TS)S
  3828. Bd)S)BdS)S)
  3829. d5d)5S5m
  3830. l)Sm5m5
  3831. B    dlclmKJcB
  3832. cBJmc5lJ
  3833. Km>B>
  3834. JBJ>m5
  3835. JmJmKc
  3836. mclK>vKl
  3837. qM6nx
  3838. lLmJn
  3839. LD;NR
  3840. n*nlcBdc5Yc
  3841. *W*WX
  3842. S)5Bcm
  3843. 5)Bm5m5c
  3844. >mKJlm
  3845. JcmJKB
  3846. Ktl>l
  3847. KnDnLC*
  3848. mlmnLn>lc
  3849. Kl>ldcSm>K>
  3850. !"N"R1;
  3851. *>lmXc5S
  3852. SY5Yd
  3853. dSB5BSd
  3854. STdSd
  3855. B5d5B5d5d5c5dScd5
  3856. 5d)cBlcB
  3857. dBdBd5d
  3858. mBmlcJB
  3859. mc5B5c5Bd>m>JlJ>lKl
  3860. clmlKt*KclK*J
  3861. LD!"?01
  3862. )S)S)TS
  3863. T)T)S5T
  3864. )TdS)S)d
  3865. )S)S)S)dS)SdSdS)S5dcB5cBd
  3866. SB5cSd5BmSc
  3867. S    dS5Scmlc5
  3868. Bd5mJ
  3869. Bdm5d
  3870. >5c5Bl
  3871. 5mcB5
  3872. mcBmBcmc
  3873. 08?09#1?
  3874. 1#F    0
  3875. )STd)
  3876. Sd)S5c5Bcd
  3877. dB5)d
  3878. c    )BS)T5B)5
  3879. B5)Sd)d5cS5B
  3880. BcdSdB
  3881. d5BcB5Sc
  3882. m"YSBdScSBmSBcd
  3883. dm5BcBcB5Sdc
  3884. "0?"!D6L*6
  3885. ;"?";
  3886. )ST)T
  3887. dSd)d
  3888. )d)T)TS
  3889. dBS)5
  3890. dBc5dT
  3891. 5d5)S
  3892. TSB)d
  3893. dS)B5c5Bdcd)dS)S)d5dT5B5c5d
  3894. B5T)T5Scm
  3895. )STdTdSd
  3896. dS5dS)Y
  3897. dSdSTdTS
  3898. )dS)S)T
  3899. )SdSdSdT
  3900. )S)TS
  3901. STS)ST
  3902. 5Y5Y5
  3903. kZ{cR
  3904. sckZJ
  3905.  Profile"
  3906. Archive Profile
  3907.     0S0E
  3908. G*{yB
  3909. ?ByG~,
  3910. ;uAEG
  3911. xE{GM
  3912. By{F|
  3913. A?v(?
  3914. skZRJ9
  3915. RcR!!
  3916. {k1ZR11)
  3917. ZZRRRB
  3918. kkkkkkkkkkkkkkkk
  3919. Edit Archive
  3920. /(ArchiveInstructions)?OpenForm
  3921. C|NRW
  3922. ulowuv
  3923. }|C$/
  3924. %klko
  3925. !!!999RRRccckkk
  3926. {sscZZ1))
  3927. {skskc
  3928. {1)!ZJ9
  3929. cZR1JB!
  3930. {RRJ11)!!
  3931. kkkkkkkkkkkkkkkk
  3932. Document Instructions
  3933. ModifyArchive
  3934.     0R4S
  3935. Archiving
  3936.     0S0E
  3937. AxH|~
  3938. JLKJ}
  3939. 111ccc{{{
  3940. ZRRB999111)))!!
  3941. RJB1)!ZJ9)!
  3942. {kkcRRJ991kkZ11)99)
  3943.         ([FileCloseWindo
  3944. Terminate
  3945. Close
  3946. /WebDelete?OpenAgent&
  3947. UNID"
  3948.     0R10S
  3949. {E,FCwvu*
  3950. ?BwI|
  3951. ;>AwI
  3952. A?*s?
  3953. {skZRJ
  3954. kRB)B)
  3955. {kcZJ
  3956. {{sssk
  3957. t Profile"
  3958. Delete
  3959. /(ArchiveInstructions)?OpenForm
  3960. C|NRW
  3961. ulowuv
  3962. }|C$/
  3963. %klko
  3964. !!!999RRRccckkk
  3965. {sscZZ1))
  3966. {skskc
  3967. {1)!ZJ9
  3968. cZR1JB!
  3969. {RRJ11)!!
  3970. Document Instructions
  3971. ModifyArchive
  3972. Periodic Archive
  3973.     0R4S
  3974.     0S0E
  3975. Bqo=<:i6
  3976. 36i<n
  3977. p{IOT
  3978. Dpl9g
  3979. 3h9lnA
  3980. JI{xwCs
  3981. Submit
  3982. Archiving
  3983.     0S0E
  3984. AxH|~
  3985. JLKJ}
  3986. 111ccc{{{
  3987. ZRRB999111)))!!
  3988. RJB1)!ZJ9)!
  3989. {kkcRRJ991kkZ11)99)
  3990.         ([FileCloseWindo
  3991. Terminate
  3992. Close
  3993.      Select Document Archiving Preferences
  3994.     vate
  3995. ArchiveExpired
  3996. Archive Expired documents | Yes
  3997.     after  
  3998. ExpiredLife
  3999. Number cannot be negative.{
  4000.     3S4S6S11SExpiredLife
  4001.       days
  4002. ArchiveInactive
  4003. Archive documents which have no activity | Yes
  4004.      after  
  4005. DocumentLife
  4006. Number cannot be negative.{
  4007.     3S4S6S11SDocumentLife
  4008.       days
  4009. ArchiveLog
  4010. Generate an Archive Log each time an archive occurs | Yes
  4011.         -    
  4012. IncludeDoclinks
  4013. Include document links | Yes
  4014.      Archive Profile editors:  
  4015. profileeditors
  4016.     0S0E
  4017. ProfileEditors
  4018. archivepath
  4019.     0S0E
  4020.      Archive Server:  
  4021. ArchivePath
  4022. ArchiveServer
  4023. Local
  4024. ArchiveServer
  4025.     3S4S9S10S12S
  4026. tmpArchiveServer
  4027.      Archive Path:     
  4028. ArchivePath
  4029. tmpArchivePath
  4030.      Archive Server:
  4031. tmparchiveserverweb
  4032. archiveserver
  4033.     0S0E
  4034. tmpArchiveServerWeb
  4035.      Archive Path:
  4036. CurrentPath
  4037.     1S2S6S
  4038. CurrentFile
  4039. CurrentPath
  4040.     0R1S2S6S
  4041. FileOnly
  4042. CurrentPath
  4043. CurrentFile
  4044. Macintosh
  4045. CurrentPath
  4046. CurrentFile
  4047. CurrentPath
  4048. CurrentFile
  4049. CurrentFile
  4050.     0R1S2S8S11S15S18S19S20S21S22S26S29S33S36S37S38S39S40S44S47S51S54S
  4051. DirOnly
  4052. CurrentPath
  4053. CurrentFile
  4054. Macintosh
  4055. CurrentPath
  4056. CurrentFile
  4057. CurrentPath
  4058. CurrentFile
  4059.     0R1S2S8S11S15S17S18S20S21S22S23S24S28S31S35S37S38S40S41S42S43S44S48S51S55S57S58S60S
  4060. DirOnly
  4061. FileOnly"
  4062. CurrentPath
  4063.     0RR1S2S5S6S8S10S11S15S
  4064. This validation field returns HTML as a result of the validation failure.
  4065. resource strings..
  4066.     0R1S2E
  4067. AllDoc
  4068. All Documents
  4069.     0R1S2S
  4070. ByCat
  4071. by Category
  4072.     0R1S2S
  4073. ByAuth
  4074. by Author
  4075.     0R1S2S
  4076. Archiving
  4077. Archiving
  4078.     0R1S2S
  4079. PrevDoc
  4080. Previous Document
  4081.     0R1S2S
  4082. Message
  4083. You must enter an Archive Path.
  4084.     0R1S2S
  4085. Get the name of this database.
  4086.     0RRR1S
  4087.     0R1S2S10S
  4088. existingdoclink
  4089. <b><a href=/
  4090. /ArchiveProfile?OpenForm>
  4091. PrevDoc
  4092. </a></b> | 
  4093.     0RR7S8S9S10S
  4094. Failure
  4095. Message
  4096.  </h2><hr><br>"
  4097.     0RR1S2S3S4S5S6S
  4098. Anchors to discussion views.
  4099.     0RR1S
  4100. TopicView
  4101. <b> <a href=/
  4102. /($All)?OpenView>
  4103. AllDoc"
  4104. </a></b> 
  4105.     0RR1S2S3E3S4S5S6S7S8S9S10S
  4106. CategoryView
  4107.   | <b><a href=/
  4108. /by+Category?OpenView>"
  4109. ByCat
  4110. </a></b> | 
  4111.     0R1S2S3S4S5S6S7S8S9S10S
  4112. AuthorView
  4113. <b><a href=/
  4114. /by+Author?OpenView>"
  4115. ByAuth"
  4116. </a></b> | 
  4117.     0R1S2S3S4S5S6S7S8S9S10S
  4118. ArchivingView
  4119. <b><a href=/
  4120. /Archiving?OpenView>"
  4121. Archiving
  4122. </a></b> <hr>
  4123.     0R7S8S9S10S
  4124. Assemble the HTML to be returned
  4125.     0RR1S
  4126. failureMsg
  4127. Failure
  4128. ExistingDocLink
  4129. TopicView
  4130. CategoryView"
  4131. AuthorView"
  4132. DateView"
  4133. ArchivingView
  4134.     0R1S2S2E7S8S2E9S10S11S12S13S
  4135. NewDoc
  4136. Notes
  4137. tmparchivePathWeb
  4138. failuremsg{
  4139.     0RRtmpArchivePathWeb
  4140. ModifyArchive
  4141. archivepath
  4142.     0S0E
  4143. ArchiveHelp
  4144. An existing archive database has been specified.  Please use the following options to specify what should be done to the original archive database.
  4145. ArchiveHelper
  4146. CopyOptions
  4147. Copy documents from the existing archive to the new database|1
  4148. DeleteOptions
  4149. Delete the existing database|1
  4150.     0S0E
  4151. Submit
  4152. Categori_ze
  4153. _Edit Document
  4154. Send Docu_ment
  4155. _Forward
  4156. Close
  4157.     0S0E
  4158. Save Profile 
  4159.     0S0E
  4160. Specify Archive Location'++LotusScript Development Environment:2:5:(Options):0:66
  4161. '++LotusScript Development Environment:2:5:(Forward):0:1
  4162. Declare Sub Click(Source As Button)
  4163. '++LotusScript Development Environment:2:5:(Declarations):0:2
  4164. '++LotusScript Development Environment:2:2:BindEvents:1:129
  4165. Private Sub BindEvents(Byval Objectname_ As String)
  4166.      Static Source As BUTTON
  4167.      Set Source = Bind(Objectname_)
  4168.      On Event Click From Source Call Click
  4169. End Sub
  4170. '++LotusScript Development Environment:2:2:Click:1:12
  4171. Sub Click(Source As Button)
  4172.      
  4173. 'see if an archive database already exists based upon some field values
  4174.      If (Len(note.tmpArchivePath(0)) >0) Then
  4175.           If (note.tmpArchiveServer(0) = "Local") Then
  4176.                Fullpath$ = note.tmpArchivePath(0)
  4177.                ExistingServer = ""
  4178.           Else
  4179.                Fullpath$ = note.tmpArchiveServer(0) + "!!" + note.tmpArchivePath(0)
  4180.                ExistingServer = note.tmpArchiveServer(0)
  4181.           End If
  4182.           ExistingPath = note.tmpArchivePath(0)
  4183.           Set existingdb = New NotesDatabase(ExistingServer,ExistingPath)
  4184.           If (existingdb.IsOpen) Then
  4185.                Select Case Msgbox("The database (" + Fullpath$ + ") already exists. To create a new database, select OK, otherwise click Cancel",33,"Database already exists")
  4186.                Case IDOK: ProcessArchiveDBExists
  4187.                End Select
  4188.           Else
  4189.                ProcessNonExistingArchiveDB
  4190.           End If
  4191.      Else
  4192.           ProcessNonExistingArchiveDB
  4193.      End If
  4194. End Sub
  4195. InstructionsF
  4196. (ArchiveInstructions)
  4197.     2S4S
  4198. _Move to Folder...    
  4199. _Remove from Folder
  4200. O=Lotus Notes
  4201. O=Lotus Notes
  4202. PURSAFO
  4203. |.:#U
  4204. O=Lotus Notes
  4205. CN=Lotus Notes Template Development/O=Lotus Notes
  4206. PURSAFO
  4207. Fde!f^^
  4208. >7GL?C>
  4209. DocLife
  4210. ArchiveDate
  4211. ObsoleteLife
  4212. $ManualArchivers_O
  4213. $TITLE
  4214. $Info
  4215. $WindowTitle
  4216. $WEBQuerySave
  4217. $WEBQueryOpen
  4218. $Script
  4219. $$Script_O
  4220. $$ScriptName
  4221. $$FormScript
  4222. $$$FormScript_O
  4223. ExpiredLife
  4224. DocumentLife
  4225. $Body
  4226. $ACTIONS
  4227. $SCRIPTOBJ_6
  4228. Times New Roman
  4229. Archive Log
  4230.  ArchiveLog
  4231. $MessageType
  4232. X    WXWXWXWXW
  4233. X    WXWXWXWXW
  4234. WXWXWXW
  4235. XWXWX
  4236. (W(W(
  4237. (V(V(VdVdV(0
  4238. (dV(V
  4239. V(W0V(W
  4240. (WV0Vd0V(dV0(
  4241. (V(W(WV(V(
  4242. dWV(VW(
  4243. V(V(V(
  4244. W    0W0V(V(W(
  4245. V(W(W
  4246. d(W(VWB0c0B0(d(0B
  4247. 0d0Vd0(Wd0(cVB0V
  4248. 0V(dVdVdV(
  4249. d(0d(WV0V
  4250. (VW0V
  4251. (WV(d(
  4252. (VW0d
  4253. W(d(V0
  4254. B(dV(
  4255. BVdBV
  4256. V(W0W
  4257. V0V(0(0VW(
  4258. W(VW(V0d(VW(W(W
  4259. VdV(Vc(d(VdV0d
  4260. 0VBVBmcd
  4261. BcBmcdcBVc0c0cd0
  4262. B0V0dcBc0BcB0cBcB0md0VdBd0cd0dB
  4263. 0    (dVB0W0(V
  4264. Vd(V(VWV
  4265. W?(V0d0(V0(0d0d(W(d0dWd(0(V(c(dV(VdV(0VBmBdV(V(d0BcdVBcBcBcBd(mdc
  4266. V(V(Vc0d
  4267. W(cdV
  4268. Bdc0Bcd0d0m0
  4269. 0d(mcm0m
  4270. cmK0dcKmV0m0
  4271. 0cmBcB
  4272. BmBdVd0K
  4273. mK>lB
  4274. Y^_]e)
  4275. >cZcd0dBcB
  4276. Y0Z0cBV(V(V(Vd(VW
  4277. (VW(@
  4278. dcd0cdB0
  4279. d0dcBd(mB0V(0V0d
  4280. c(cd(mV
  4281. (Vd(mcdVd(B
  4282. 0BdVdm0m0m
  4283. mdVm0d0m0cBdcV
  4284. VdcmBcB0lmKmK
  4285. NmBcl0
  4286. ClcKNcml0cKBmcm
  4287. Kld0V
  4288. [2^Eg o)Cm
  4289. lmlBcmc0c
  4290. 1^g )
  4291. V0(V(W(WV(V
  4292. 0(Vd0dVBc0B0c(BdVd
  4293. dm0BdVc0dWBd0mdVmBcB
  4294. B0mcVdBZ0d
  4295. KB(mKlmN
  4296. NcmB0cK>
  4297. >cVBd0B0lKlBm
  4298. BmcK0ZBmcmB0mB
  4299. cm0mB>ml
  4300. lKNCN
  4301. CPxPoDOC>N>mc
  4302. B>ONOClONoO
  4303. Oeo>lO
  4304. >mBcB
  4305. >CDON
  4306. +bG^E\: e>l
  4307. mKl>o:si^Eg[1e
  4308. cmYlc
  4309. Bd0Vd
  4310. XWXWXW
  4311. BcB0Bc(cBd0c
  4312. BmcBVld
  4313. B(BVm0mV0B>umcNKmC
  4314. Bm0BKmK>
  4315. VlKlBm
  4316. Bm0dBc0K
  4317. B0mul0mBlNKcBlB
  4318. NKcdB
  4319. mKNKcKNKNU>Ncm
  4320. mclKUCN)Ce: )YC :
  4321. lYle:e
  4322. O    mNlNd0dC
  4323. s:1OC
  4324. lmlO>
  4325. NmlCl)[:\jE:[eo
  4326. (VZ0dBVd0Bd0Bd0VdB(c
  4327. m0c0c0mK
  4328. KB0BdmBlKdm
  4329. N    uNK>lmK0K
  4330. m    clmNlKNK>
  4331. K    >U>K>KONm
  4332. KclCUNO
  4333. mNUCU
  4334. N>mBmc0cmKBl>UNmKmNOuNON
  4335. oO!U>mUN
  4336. :eO>N
  4337. ]+E?DeO>Om>mdN
  4338. Ej*g:De)l
  4339. ):D:DZ
  4340. l>mcl
  4341. 0Bd0B
  4342. mBm0c(dVd
  4343. >KuNcBcBm>NmcmBl
  4344. lKlmK
  4345. BlUm>mUlPNm>0NKdUN>KO
  4346. m>BcBKN
  4347. :_F?")Cl>m>NmP>C
  4348. ;E?DPO
  4349.     ijs:xOl>0
  4350. V    j@_Q?O)Cx
  4351. >KN>PC
  4352. nGjF?e)O
  4353. >mcKm
  4354. m0dBcV0V0V0dWV(
  4355. (V(VW
  4356. cBd0B
  4357. Km0NcBN>mNm
  4358. cK>lNK
  4359. O    NOxKmOKN
  4360. UcU>Nmcm
  4361. mNmNUNdm
  4362. mOm>x
  4363. xNm>xN
  4364. Bcm>Km>KNmxBdlm
  4365. ulB0dNd
  4366. mNKxK
  4367. O>Z1g
  4368. njRoeCl>BNlK
  4369. _kE?7oCxPxNxNC
  4370. QCPOx
  4371. pk;Fs
  4372. oO>Cl
  4373. )`jg exON
  4374. V^p`Z
  4375. cmcB0V
  4376. Bd0V(d0(
  4377. VWV(cV
  4378. VBc0c0c0K>0K>
  4379. KmdBlK
  4380. mlBmN
  4381. BcBK>N
  4382. KmNlK
  4383. UxmlOUOP
  4384. xmNUuO
  4385. xmUxONmB0K0cNlUm0m
  4386. NmB0dK
  4387. U#NmxKlmPUNKPUmNUcBxKlKlBxOlmB
  4388. m>BlKO
  4389. KxNPl"ELk<qw
  4390. AGjge
  4391. KmK>C"
  4392. aIkqHtg?:C>
  4393. {HGs:PeOm>
  4394. x>Cl"YW
  4395. bkvF:?o)N>O>xP1
  4396. Wp2iF?1)
  4397. O>c>uC
  4398. ^i\: )lN
  4399. KcdBmVmcmcB0(
  4400. d(d0Vd0Bd
  4401. dc0BmdKldc
  4402. KOBmBc0KlUlNUc
  4403. mu>m0N>K>N
  4404. >mcUOU
  4405. K    UxPUxlKBP
  4406. UxUNK
  4407. xm>uN0
  4408. K    >mx>mPxKm
  4409. mlUlK
  4410. >NmKcNlO lZX
  4411. YrpGE:o
  4412. >ONONlo
  4413. ]hraqH@_g"oC>OxPxQX
  4414. `G;g?eP)
  4415. W_    #=^
  4416. <GE] ?7o!
  4417. O    >TDVW
  4418. OoOCNOD?
  4419. Yqb)XW
  4420. g oCOlO
  4421. +2j] o
  4422. cBmcB0BcZB
  4423. BdBlBc
  4424. m    lNU>UNmNU
  4425. ONu>K
  4426. NOUxKxK
  4427. m    Nm>mUlOxm
  4428. xUxNxUNx
  4429. cBmNlNmKNU
  4430. Kcl>mUNmUmNU>
  4431. KNOxU
  4432. ONxPulxUmK>cKmKNml
  4433. cKm>Kum
  4434. )hq{j? )
  4435. NOlNO)
  4436. aJAq<nvFQ:oP
  4437. qrp2`
  4438. :o"lm>KOlOY
  4439. 7?TPCP5?
  4440. bq2i_R7QPDOCP":?
  4441. wq2@E7s:oxl
  4442. `biE[ CoONmK
  4443. BKcBmBc
  4444. V0d(VW(
  4445. (W(0c
  4446. d0cKmumNmNKNU0mcmKl
  4447. UNBl>ml
  4448. NKlKm>0KNOK
  4449. cBmKNONmNU
  4450. lKlKlKxmKm
  4451. xNOxK
  4452. N'uN>NmxKl>KmBld0BmBcNumNxBmNmKlKNUlm>mUN
  4453. NU>UOUP
  4454. NxNxKNlKB>lcKNxUO>UKc
  4455. KNmxKNU
  4456. Z]^`)
  4457. ^yAH;g:C
  4458. lKNloY
  4459. Zyrq2H@_E? :xm>mNC)
  4460. *%7:!P
  4461. qG@;FEQ!:!P5":7
  4462. ar&v_EQ"oON
  4463. )oOl>
  4464. lBd0cBd(
  4465. (VcBcd
  4466. 0mcNmNK>uN
  4467. NuONm>K
  4468. lOKOKmNmK
  4469. >NmNKmKuNUxU
  4470. NxUxNKlKU>K
  4471. m>NmKNlU>N
  4472. mlUNm
  4473. >K>KmNl
  4474. mNKNUNx
  4475. NUKNlKmKlUmNOUON
  4476. ahq<ig:oPOUx
  4477. kvRF7"PCP>lNPo
  4478. +Aqbk+iEg:?o>l
  4479. qAH@;E,?7TQ"
  4480. yrpnGtF?PC
  4481. h#f3abkjEo
  4482. O>KcC
  4483. c0B0d
  4484. (WXWX
  4485. dB(dcm
  4486. >mlB>mKBNmB
  4487. UuOcN
  4488. NUKlNKmO>c
  4489. NUxUOPUNxOmKm
  4490. NUxPUxU
  4491. UOKNOBmB
  4492. KOl>KNuNlBOUN
  4493. uONKxUPm
  4494. mOUONl
  4495. 0mNUNBU
  4496. Zaqa[
  4497. W|3r<;}?"Px>KPlD
  4498. _rq<kS_gQ"oCNulNmCD
  4499. W_rAG_;j:o"
  4500. $7,Q4R
  4501. 1;IAHkSLF,87F8
  4502. 1ZVZ3#q2GvF?QPOl
  4503. #whqapkiFs?:l
  4504. dVd(V(
  4505. d0dmVKmV
  4506. dK0cNdmKBKm
  4507. mOKmNUNm>K
  4508. NOmPNO
  4509. N    UxUNKNmNx
  4510. cm>KlKN>mlmNl
  4511. 0cNPmUc>mKNlKNmK
  4512. uBNUO
  4513. ONOUKm
  4514. m>KcNmBNUm>KxCo
  4515. |3A{iR:ePNKlNOC
  4516. qrpHkFE: xPlP>K
  4517. 1ij? "OlNK>mKCl
  4518. F/.'Z
  4519. 'H$8F4,1
  4520. %$4F:
  4521. Z^#rqk@LsQ"oxm>lm>C:
  4522. [2n^[Z
  4523. qpG;F[eo
  4524. mV(m>
  4525. KmKmcK>c>mcBNU0
  4526. clmNU
  4527. BmUONxU
  4528. UmcxN
  4529. xKNm>mKcUmKlNKNxKUmNcU
  4530. cNUlU
  4531. PUNmx
  4532. lK>K>UOlNcuNxNDZ
  4533. fw<G;R
  4534. OlNxOx)
  4535. WwqpkjE:1CPCuxNlKmCo:
  4536. +{@:o:xOCmOm
  4537.     W_A&H-
  4538.  zJrp+;F7?
  4539. x    N>KN>No:
  4540. Fs"PDNlB
  4541. (WdBdVB0(
  4542. m0m0K0ml>lBcBmNl
  4543. >mKmc0mcNlNOm0mONUKUNP
  4544. xUPlKOUN
  4545. lcUKO
  4546. m1NlNUOmKmKNmNcBcNUOmOK>NmKxUKmUcmKcBmNxUNK>UOmBUON
  4547. PxUNUxUNmNPUmxKlKUOCKNmKc
  4548. U    NxBNKCP?Y
  4549. _Jrni}R7PxONU
  4550. kiE]:oC
  4551. mxNUmlNC j1
  4552.     Z+H_gQoPx
  4553. iEF?CxPOcNmucCog1W
  4554.     Wap+;E]e
  4555. lm0dB0V
  4556. 0BdZB
  4557. 0dVB0
  4558. d0dBKNmu
  4559. m>KUN>Bd0m>K
  4560. BN>UmOUlOPOUO
  4561. KUmOK
  4562. NBNcOBNKOmcKl
  4563. N    U>mc0m
  4564. mx>m>NKONUNxNUNUKmKmK
  4565. KONPUKNxNuN>mOUPUO
  4566. N>NUKNmKNU>
  4567. cmUmKOKxOKOUOl
  4568. :F@ik
  4569. rwyhwq<{vR
  4570. o"RGHpHn@_*: CPm
  4571. Nxle?jGn+2
  4572. pnEF:P
  4573. NKNKlC";kH<
  4574. 2@jEs"oO
  4575. N>KOC?Fk^[
  4576. apk^E:e)ol
  4577. cVmWV(
  4578. (d(VdV0V
  4579. (dW(0
  4580. d(dVBV
  4581. m    >N0mKl>KN
  4582. 0mKBcmKl>UNUOKN
  4583. mUKNmOm0lmNKUKmlK0Bdlx
  4584. lUNmBNxKN>UNlUK
  4585. OxUOUK
  4586. UxUKlmNOUOx
  4587. mOUOx
  4588. >mxUl
  4589. mUmNmlNlo?s;nH
  4590. <qp<{@ER x"ONlONPTQs;G@i
  4591. : e)xc
  4592. N!>UKUc>NCPsEkHpb<n+E:sPoOl>OlN>:QR
  4593. G-@GH
  4594. H<HG+_E
  4595. dNu0lCo:Einb
  4596. d    (V(V(W(WV
  4597. WVWVWVW0dV(V
  4598. 0(dc(c
  4599. d0d0m>BKdcN0lcKm0V0d0dc0BmKm>Nl
  4600. BcmcK
  4601. m>U>KcB
  4602. >KmNd0
  4603. N    lN>dNmcKU
  4604. UNOxUOUNU>PNK
  4605. K0mBm
  4606. lmlKU
  4607. KOcmBUO
  4608. KUOUmKm>KmOKmPxONOUO
  4609. mK>K>OD
  4610. +    @GSiLF7?Q
  4611. x    NxuUNOo"Q
  4612. RFs? e
  4613. >mNKl>C:?Fj;ikFtE?:PON>OU
  4614. jF*?:)lo
  4615. >le:EFj
  4616. ^i*:[)
  4617. WdV(V(
  4618. V(d(0(dV
  4619. V(dVB
  4620. 0md0cZ
  4621. BcB0mK>
  4622. >muKcm0dc0Kl
  4623. cmlmKOKBcNKlON
  4624. lNKcmNm>
  4625. KlU0NmNUm>mN
  4626. KmlmKUOKuN
  4627. gF7s?
  4628. CxNKl>KxOxP:D
  4629. mKlUN
  4630. Po:[7Fg]Es DPCluNlOmc
  4631. P?,FEF
  4632. 0BZBc)e
  4633. W(VWVW(
  4634. dVd(dV0dm0B
  4635. W(0VdBc
  4636. cdc0BcK
  4637. lB>lK
  4638. KmcBdBmdl
  4639. mKcBlKd0Kc
  4640. dKBNKc
  4641. Bm0uNuN>mcOml
  4642. mKcNm>Bm
  4643. KlN>UuNmNONlKmNmB
  4644. oNUNoKmc
  4645. P:"?Q:s ? QxoxOUN
  4646. mKmON
  4647. C    oeDePDOC
  4648. )N>lUu>Ol>eD":E,F$;%
  4649. ?     eC)lZ
  4650. 0    Zmc)e)D )
  4651. YlYcV
  4652. ZBd(V(B0V(
  4653. 0    dV0V0m
  4654. K0mKV(m0m0B0d>clmNKcB
  4655. cBcBl
  4656. 0KlmK
  4657. 0mOKNuNKlm
  4658. NmNc>
  4659. lBlKm0KlUNl
  4660. KmlmNc
  4661. mclNlNCl
  4662. eC"xe>OmKCu
  4663. mNBcK
  4664.  oC)l
  4665. dB0Zc(V(VdVdV
  4666. V(0Bcm
  4667. 0(0m0m0c
  4668. 0    m>mBcm0mK
  4669. B>B0Bcd0cm>K>m
  4670. m>KNBm
  4671. >mNKlcmB
  4672. mB0lKm
  4673. KcmKNB
  4674. COCl>lClm
  4675. N>dc(
  4676. mlClN
  4677. )CcNml0m>d
  4678. >mOC:P"
  4679. %$%-V
  4680. VB0d0B0
  4681. 0c0dVc0d
  4682. 0d(cBlcB
  4683. VdBmdBd0d0d
  4684. mcmKmK0
  4685. mc0B0c0Bd>mK
  4686. mlmC>
  4687. l    NuCNclC>l
  4688. mBdV0B0m
  4689. mB0cBK>m
  4690. c0m0mBcl>NCoD1:
  4691. H%$F$
  4692. V(V(V
  4693. XWXWX
  4694. WXWXW
  4695. W(W(V0W
  4696. (Vd(V(d
  4697. (V(V(V(dV(VdV0(
  4698. 0dcBdcBd
  4699. VB0cVd0BmV
  4700. c0cmBV
  4701. Vd0(V
  4702. 0VcmlB0
  4703. Bd0mK
  4704. B0m0dcBc
  4705. >0c0Bl
  4706. mcBmBcmc
  4707. VdVcmcB0d0Bm
  4708. clm0d0d
  4709.  C)Yc0V
  4710. (VWd(
  4711. (V(V0c0Bcd
  4712. dB0(VcmVBVW(dB(0
  4713. V    0V0Bcd0cB
  4714. B0(Vd(d0c(0
  4715. BcdVdB
  4716. ZV0dVcVBmVBcd
  4717. BcV0m0BcBcB0
  4718. 0B0BcVB
  4719. Vd0c0
  4720. d    V(VBcBV
  4721. XWXWX
  4722. dVd(d(VW
  4723. d    Vd(d(W(
  4724. V    0V(dBc0dW
  4725. W0BVd0d0(V
  4726. (B0cdB0cd(dV(V(d0dW0Bdc0d
  4727. B0W(Wd(
  4728. dV0d0(W(V0d(Vd(V
  4729. XWXWX
  4730. V(Wd(
  4731. d(WdV0dV(Z
  4732. dVdV(
  4733. 0Z0d(dV(V(W
  4734. (dVdVdV
  4735. VdVdV(
  4736. (V(VWV(VW(V
  4737. (V(WV
  4738. VW(V(W
  4739. E;EF;
  4740. XWXWX
  4741. scsZJ
  4742. kZ{cR
  4743. {{kZscR
  4744. {kcZJ
  4745. sskZkcR
  4746. s{{kssc
  4747. ccRZZJ
  4748.  Log"
  4749. WWWWWWWW
  4750. XXXXXXXX
  4751. WWWXWXWW
  4752. WWWWWWXW
  4753. Categori_z
  4754. Archive Log
  4755. Archive Log 
  4756. LogCount
  4757. LogTotal
  4758.  for 
  4759. ArchiveDate
  4760.     Message Content:
  4761. ArchiveTrailer
  4762. ArchiveTrailer
  4763. <br><hr><b> <a href=/
  4764. /($All)?OpenView>All Documents </a></b> | <b><a href=/
  4765. /by+Category?OpenView>
  4766. by Category</a></b> | <b><a href=/
  4767. /by+Author?OpenView>by Author</a></b> | <b><a href=/
  4768. /Archiving?OpenView>Archiving</a></b> <hr>
  4769.     Hidden:  
  4770. Archive Log for 
  4771. ArchiveDate
  4772.     1S2S
  4773. Subject
  4774. (Archive)
  4775. Categories
  4776. Close
  4777.     0S0E
  4778. Categori_zeF
  4779. _Edit Document
  4780. Send Docu_ment
  4781. _Forward
  4782. _Move to Folder...
  4783. _Remove from Folder
  4784. O=Lotus Notes
  4785. O=Lotus Notes
  4786. PURSAFO
  4787. |.:#U
  4788. O=Lotus Notes
  4789. CN=Lotus Notes Template Development/O=Lotus Notes
  4790. PURSAFO
  4791. Fde!f^^
  4792. DocLife
  4793. $ManualArchivers_O
  4794. ObsoleteLife
  4795. DocumentLife
  4796. $TITLE
  4797. $Info
  4798. $WindowTitle
  4799. $$Script_O
  4800. $$ScriptName
  4801. ArchiveDate
  4802. $Body
  4803. $ACTIONS
  4804. Times New Roman
  4805.  (ArchiveInstructions)
  4806. 1?1?1;?
  4807. 2;21?2
  4808. 1?2?1
  4809. ?1?12;2
  4810. 1?1?2
  4811. ?1?1;
  4812. 1?;?1;1?
  4813. >K>1?
  4814. ;2>?1>
  4815. 7M8FA
  4816.     =ZHFEB
  4817. 8HEABC@
  4818. K    >K>J
  4819. OLBAEF
  4820. K>J>K1
  4821. ?JK>K
  4822. $dJ>6
  4823. KB ^ZSR\
  4824. TJL@5
  4825. 4:HEBCO
  4826. 18P:6
  4827. 121?>
  4828. $WO$W(W
  4829. K>6G]D6
  4830. LO#OWO
  4831. 8    FAB
  4832. K?K>K>
  4833. \W$\dg)`ROL@5GYj]H1
  4834. 1CU^Z
  4835. 4YPZH
  4836. bTdOTCU&
  4837. V    b%s
  4838. *lhg\
  4839. O(\W\6
  4840. :=    F7BLB
  4841. hSgO`
  4842. G&c%nphg\($W(
  4843. g@>61UB
  4844. 7UcP I
  4845.     QP=Z    G
  4846. g\(\)viVbVtr`\nc!
  4847. %Uu%n+p
  4848. *gd[Vbf|u%n*hgh
  4849. dgq)`O
  4850. DU<=IH
  4851. fOT#O#
  4852. 6<P<7
  4853. [yt*`s&us L@LC'cu%n
  4854. l*hgdgdoh
  4855. b    )|u%t+lhv
  4856. Y    PMZ
  4857. K    1?1?1?;1
  4858. uzu%ST
  4859. Td&u%o
  4860. )*ph)g
  4861. *g\VbVx|uxn+rg
  4862. ) vrqi(lpOCJ>618D
  4863. 876FNPZ
  4864. 9DUPZ
  4865. XtumhO
  4866. W    lmibVbVbX
  4867. *)o*ogT
  4868. V|zyx
  4869. -[bVk_V
  4870. VkRWC
  4871. 6@]Y<N    S
  4872. pqbVbV
  4873. b    X+lo*h*hf
  4874. [~&yxtr-
  4875. O@>NjQN
  4876. g)*$V
  4877. 0y%xyudVbX/
  4878. |#iVbotrwplx[bVk|zytrtobVbX-0obVbksmu
  4879. K    >1K
  4880. >1>K>K
  4881. d)gpebVby}~qbVb0yx%
  4882. T.tri
  4883. kx+pw
  4884. b    ozyxt-tkV
  4885. b    fs% ^
  4886. AF    M=<
  4887. =MGF7BC
  4888. 1;12;
  4889. ;2121212
  4890. FSHG    
  4891. i~0zk
  4892. b    ezy%rtrbV
  4893. b    VbVbVbqx-
  4894. r)VbVtzxt-rtfbV[~z/yebVfsnl
  4895. 2?1;1
  4896. BCO@>
  4897. h)VbVp|y/fVbTzxtrto
  4898. rxrpw,i
  4899. f|/{.X
  4900. 1    212
  4901. >K#K>
  4902. )ytlprwVbVz~|
  4903. /yxtr
  4904. p    rebVezxnr
  4905. Vbz/yk
  4906. Vo%Sg
  4907. 6K>4C4
  4908. >    K>J
  4909. @OBO$
  4910. WdhfVbV0yxpVbVrstp*p+[
  4911. eyzypTxn
  4912. V[ylo
  4913. fzxtqV
  4914. xtp`ohpqVbVbV
  4915. etph)gh)VbVoxrp
  4916. libVbT
  4917. X,t*gO
  4918. K>K>KJ>
  4919. Vkxtrf
  4920. e~iVbVf-%lg
  4921. K    >6>
  4922. rntlh
  4923. gS+lo*
  4924. \golnrlh
  4925. `*VbVi|yxptxnSgOL
  4926. OW\ghl*lShg
  4927. OWg`h`g
  4928. S`dO@
  4929. W\$bVbntlh
  4930. ;21;2
  4931. ;12?1
  4932. ?1?1;1
  4933. 1?1?1?1
  4934. T@J>6?1
  4935. 121;12
  4936. J@LOW\gh*`
  4937. ?16?6
  4938. \R`ROC@K>6
  4939. cskJkcB
  4940. {J{sB
  4941. {{kssc
  4942. RssBkk9ss9
  4943. 22222222
  4944. Archive Help
  4945. Archive Profile Help
  4946. The Archive Profile allows you to specify which documents should be removed from the current database and stored in an archive database. This allows you to keep your database up-to-date with only the latest topics.  Archiving tasks can only be performed by designers or managers of the database.  
  4947. You can choose the following in your ArchiveProfile:
  4948.     Archive expired documents
  4949.     Choose this option if you wish to archive documents which have been marked as expired. Indicate the number of days to wait before the expired documents are archived.
  4950.     Archive documents which have no activity
  4951.     Choose this option if you wish to archive documents which have had no activity. Indicate the number of days to wait before the inactive documents are archived.    
  4952.     Generate an Archive Log each time an archive occurs
  4953.     Choose this option if you wish to have an Archive Log created when documents are archived.  You can also indicate if you would like document links to the archived documents included in the Archive Log.
  4954.     Archive Profile Editors:
  4955.     Specify the names of those users that should be allowed to modify the Archive Profile.
  4956.     Specify Archive Location:
  4957.     Click on this button to specify the server and filename of the Archive database. The archive database is created for you based upon the values specified in the dialog box.
  4958.     Documents are Archived:
  4959.     Select the location for the archive database.  Options are Locally or On Server.  What you select depends on where you intend to locate the archive database.  In order to create databases on a server, you must have the proper access rights in the server document for the specific server.
  4960.     Archive Database Server:
  4961.     Specify the server which you would like to create the archive database on.  If you are entering this from a web browser, you can only enter the current server that the database is located on.  Use a Domino Designer client to enter a server other than the current server where the database resides.  
  4962.     In order to create databases on a server, you must have the proper access rights in the server document for the specific server.
  4963.     Archive File:
  4964.     Specify the filepath and filename of the archive database.  If no path is specified, the database will be created in the Notes data directory on the server or on the local client.  
  4965. <hr><b> <a href=/
  4966. /($All)?OpenView>All Documents </a></b> | <b><a href=/
  4967. /by+Category?OpenView>
  4968. by Category</a></b> | <b><a href=/
  4969. /by+Author?OpenView>by Author</a></b> |<b><a href=/
  4970. /Archiving?OpenView>Archiving</a></b> <hr>
  4971. Categori_ze
  4972. _Edit Document
  4973. Send Docu_ment
  4974. _Forward
  4975. _Move To Folder...
  4976. _Remove From Foldert
  4977. O=Lotus Notes
  4978. O=Lotus Notes
  4979. PURSAFO
  4980. |.:#U
  4981. O=Lotus Notes
  4982. CN=Lotus Notes Template Development/O=Lotus Notes
  4983. PURSAFO
  4984. Fde!f^^
  4985. $TITLE
  4986. $Info
  4987. $$Script_O
  4988. $$ScriptName
  4989. $Body
  4990. $ACTIONS
  4991. (ArchiveProfileDlg)
  4992. Y=qMqL=+
  4993. Hl&Z8
  4994. M=q7Mq_
  4995. 'Hk8[9
  4996. 8[9'kI
  4997. Mq&ZH
  4998. I'm8m
  4999. <o<^<
  5000. 7=k+H
  5001. qG%kG
  5002. Y%Y+G
  5003.     l%Y7[
  5004. 7[ml9[k
  5005. p)Mk7q
  5006. =q=GM
  5007. Hm'IlI'
  5008. o=;_)_
  5009. qL7q+_
  5010. 9lm%k
  5011. &Z8Z8
  5012. G_Y8Z
  5013. Gk%G7
  5014. =_p<%G7
  5015. 8kpMq+
  5016. 8lZ&Z&
  5017. 7G%Y^
  5018. +G%qZ
  5019. k7q*=
  5020. L_p<_
  5021. =k[<l
  5022. 7Y%_7
  5023. GY+7k7
  5024. I9m9m
  5025. qM=+_+
  5026. ];op^
  5027. %YGYk
  5028. M+H%8
  5029. %G%l&
  5030. %k_7*
  5031. *^*_7
  5032. Y=_Mq=
  5033. k'H&H&
  5034. L+q+q=
  5035. ^    _p^=
  5036. ;pL]o
  5037. ];K_=Y
  5038. J]n](
  5039. Lq<p_
  5040. <^L_+
  5041. T    ?f!
  5042.     T    -a
  5043. a-!    2x
  5044. y3yUyW"
  5045. ccckkksss{{{
  5046. {{sssk
  5047. ss{{{
  5048. 3 Worksheet
  5049. Local
  5050. ArchiveLocation
  5051. Locally | LocalOn Server | Server
  5052. ArchiveLocation
  5053. Local
  5054.     1S2S
  5055.     0S0E
  5056. ArchiveServer
  5057. ArchiveLocation
  5058. Local
  5059. ArchiveServer
  5060. ArchiveServer
  5061.     4RS4E6R7S8S10RS4E12R13S14S16RS4E28RArchiveServer
  5062. CurrentPath
  5063.     1S2S6S
  5064. CurrentFile
  5065. CurrentPath
  5066.     0R1S2S6S
  5067. FileOnly
  5068. CurrentPath
  5069. CurrentFile
  5070. Macintosh
  5071. CurrentPath
  5072. CurrentFile
  5073. CurrentPath
  5074. CurrentFile
  5075. CurrentFile
  5076.     0R1S2S8S11S15S19S20S21S22S26S29S33S36S37S38S39S40S44S47S51S54S
  5077. DirOnly
  5078. CurrentPath
  5079. Macintosh
  5080. CurrentFile
  5081. CurrentFile
  5082. CurrentFile
  5083. Macintosh
  5084. CurrentPath
  5085. CurrentFile
  5086. CurrentPath
  5087. CurrentFile
  5088.     0R1S2S8S11S14S15S16S21S23S2E24S27S28S34S36S37S39S43S45S46S49S50S51S52S53S57S60S64S66S67S69S70S71S72S73S77S80S84S86S87S89S
  5089. dftvalue
  5090. DirOnly
  5091. FileOnly"
  5092. CurrentPath
  5093.     0RR1S2S3S4S7S8S10S12S13S17S
  5094. Macintosh
  5095. dftvalue
  5096. dftvalue
  5097. dftvalue
  5098. dftvalue
  5099. dftvalue
  5100.     0R3S4S5S6S21S22S23S24S25S26S
  5101. ArchivePath
  5102. Please specify the filename of the archive database
  5103.     3S4S6S11SArchivePath
  5104.     Documents are archived:
  5105.     Archive database server:
  5106.     Archive file:
  5107. servers
  5108. names.nsf
  5109. ($Servers)
  5110.     1S2S
  5111. selectedserver
  5112. Server
  5113. Please select a server to create your archive database on.
  5114. archiveserver
  5115. servers
  5116.     0R1S2S
  5117. ArchiveServer
  5118. selectedServer
  5119.     0R1S2S3S
  5120. ?_?__
  5121. `!b`1
  5122. 7`^///?
  5123. ?b___
  5124. `bOOO
  5125. `<b!R
  5126. @If(@IsN
  5127. O=Lotus Notes
  5128. O=Lotus Notes
  5129. PURSAFO
  5130. |.:#U
  5131. O=Lotus Notes
  5132. CN=Lotus Notes Template Development/O=Lotus Notes
  5133. PURSAFO
  5134. Fde!f^^
  5135. mmxGu
  5136. $TITLE
  5137. $Info
  5138. $$ScriptName
  5139. $Body
  5140. (ProcessExistingDbDlg)'++LotusScript Development Environment:2:5:(Options):0:66
  5141. '++LotusScript Development Environment:2:5:(Forward):0:1
  5142. Declare Sub Postopen(Source As Notesuidocument)
  5143. '++LotusScript Development Environment:2:5:(Declarations):0:2
  5144. '++LotusScript Development Environment:2:2:BindEvents:1:129
  5145. Private Sub BindEvents(Byval Objectname_ As String)
  5146.      Static Source As NOTESUIDOCUMENT
  5147.      Set Source = Bind(Objectname_)
  5148.      On Event Postopen From Source Call Postopen
  5149. End Sub
  5150. '++LotusScript Development Environment:2:2:Postopen:1:12
  5151. Sub Postopen(Source As Notesuidocument)
  5152.      source.RefreshHideFormulas
  5153. End Sub
  5154. Z<rNrM<+
  5155. Im&[7
  5156. N<r6Nr`
  5157. 'Il7\8
  5158. 7\8'lJ
  5159. Nr&[I
  5160. J'n7n
  5161. ;p;_;
  5162. 6<l+I
  5163. rH%lH
  5164. Z%Z+H
  5165.     m%Z6\
  5166. 6\nm8\l
  5167. q)Nl6r
  5168. <r<HN
  5169. In'JmJ'
  5170. p<:`)`
  5171. rM6r+`
  5172. 8mn%l
  5173. &[7[7
  5174. H`Z7[
  5175. Hl%H6
  5176. q;%H6
  5177. 7lqNr+
  5178. _*Hlr
  5179. m76`&
  5180. "MpM<
  5181. n'8[&
  5182. 6lI7[
  5183. q;*:qL
  5184. <N%r6
  5185.